You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
monkeyking/IPython/frontend/html/notebook/templates/logout.html

44 lines
963 B

{% extends "page.html" %}
{% block lesscss %}
{% if use_less %}
<link rel="stylesheet/less" href="{{ static_url("auth/less/style.less") }}" type="text/css" />
{% else %}
<link rel="stylesheet" href="{{ static_url("auth/css/style.min.css") }}" type="text/css"/>
{% endif %}
{% endblock lesscss%}
{% block login_widget %}
{% endblock %}
{% block site %}
<div id="ipython-main-app">
{% if message %}
{% for key in message %}
<div class="message {{key}}">
{{message[key]}}
</div>
{% endfor %}
{% endif %}
{% if read_only or not login_available %}
Proceed to the <a href="{{base_project_url}}">dashboard</a>.
{% else %}
Proceed to the <a href="{{base_project_url}}login">login page</a>.
{% endif %}
<div/>
{% endblock %}
{% block script %}
<script src="{{static_url("auth/js/logoutmain.js") }}" type="text/javascript" charset="utf-8"></script>
{% endblock %}