logout.html
17 lines
| 427 B
| text/html
|
HtmlLexer
Stefan van der Walt
|
r5325 | {% extends layout.html %} | ||
{% block content_panel %} | ||||
Stefan van der Walt
|
r5719 | {% 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 %} | ||||
Stefan van der Walt
|
r5325 | {% end %} | ||
Stefan van der Walt
|
r5720 | |||
{% block script %} | ||||
<script type="text/javascript"> | ||||
$(document).ready(function() { | ||||
IPython.login_widget = new IPython.LoginWidget('span#login_widget'); | ||||
}); | ||||
</script> | ||||
{% end %} | ||||