##// END OF EJS Templates
On the login page, focus on the password field.
On the login page, focus on the password field.

File last commit:

r5720:c7b2a070
r5720:c7b2a070
Show More
logout.html
17 lines | 427 B | text/html | HtmlLexer
Stefan van der Walt
Add logout button.
r5325 {% extends layout.html %}
{% block content_panel %}
Stefan van der Walt
Redirect to front page upon read-only logout.
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
Add logout button.
r5325 {% end %}
Stefan van der Walt
On the login page, focus on the password field.
r5720
{% block script %}
<script type="text/javascript">
$(document).ready(function() {
IPython.login_widget = new IPython.LoginWidget('span#login_widget');
});
</script>
{% end %}