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

18 lines
427 B

{% extends layout.html %}
{% block content_panel %}
{% if current_user and current_user != 'anonymous' %}
Proceed to the <a href="/">front page</a>.
{% else %}
Proceed to the <a href="/login">login page</a>.
{% end %}
{% end %}
{% block script %}
<script type="text/javascript">
$(document).ready(function() {
IPython.login_widget = new IPython.LoginWidget('span#login_widget');
});
</script>
{% end %}