notebook/IPython/frontend/html/notebook/templates/logout.html

41 lines
745 B
HTML
Raw Normal View History

{% extends page.html %}
2011-11-19 08:59:48 +08:00
{% block stylesheet %}
<link rel="stylesheet" href="{{static_url("css/logout.css") }}" type="text/css"/>
{% end %}
{% block login_widget %}
{% end %}
{% block site %}
<div id="main_app">
{% if message %}
{% for key in message %}
<div class="message {{key}}">
{{message[key]}}
</div>
{% end %}
{% end %}
{% if read_only or not login_available %}
2012-07-02 03:58:30 +08:00
Proceed to the <a href="{{base_project_url}}">dashboard</a>.
{% else %}
2012-07-02 03:58:30 +08:00
Proceed to the <a href="{{base_project_url}}login">login page</a>.
{% end %}
<div/>
{% end %}
{% block script %}
<script src="{{static_url("js/logoutmain.js") }}" type="text/javascript" charset="utf-8"></script>
{% end %}