notebook/IPython/html/templates/logout.html

39 lines
810 B
HTML
Raw Normal View History

2013-05-16 07:21:39 +08:00
{% extends "page.html" %}
2011-11-19 08:59:48 +08:00
{% block stylesheet %}
{{super()}}
<link rel="stylesheet" href="{{ static_url("auth/css/override.css") }}" type="text/css" />
{% endblock %}
{% block login_widget %}
{% endblock %}
{% block site %}
<div id="ipython-main-app" class="container">
{% if message %}
{% for key in message %}
<div class="message {{key}}">
{{message[key]}}
</div>
{% endfor %}
{% endif %}
{% if 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>.
{% endif %}
<div/>
{% endblock %}
{% block script %}
2013-05-16 07:21:39 +08:00
<script src="{{static_url("auth/js/logoutmain.js") }}" type="text/javascript" charset="utf-8"></script>
{% endblock %}