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.
24 lines
525 B
24 lines
525 B
{% extends layout.html %}
|
|
|
|
{% block content_panel %}
|
|
|
|
{% if login_available %}
|
|
|
|
<form action="/login?next={{url_escape(next)}}" method="post">
|
|
Password: <input type="password" name="password" id="focus">
|
|
<input type="submit" value="Sign in" id="signin">
|
|
</form>
|
|
|
|
{% end %}
|
|
|
|
{% end %}
|
|
|
|
{% block script %}
|
|
<script type="text/javascript">
|
|
$(document).ready(function() {
|
|
IPython.login_widget = new IPython.LoginWidget('span#login_widget');
|
|
$('#focus').focus();
|
|
});
|
|
</script>
|
|
{% end %}
|