##// END OF EJS Templates
Merge pull request #1158 from takluyver/nbpy-encoding-declaration...
Merge pull request #1158 from takluyver/nbpy-encoding-declaration Add coding header when notebook exported to .py file. Closes gh-1156, also strips the encoding declaration out when we load a .py file.

File last commit:

r5723:8326cad4
r5746:688cc09e merge
Show More
login.html
26 lines | 561 B | text/html | HtmlLexer
{% 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 login_widget %}
{% end %}
{% block script %}
<script type="text/javascript">
$(document).ready(function() {
IPython.login_widget = new IPython.LoginWidget('span#login_widget');
$('#focus').focus();
});
</script>
{% end %}