##// END OF EJS Templates
Merge pull request #3440 from codespaced/master...
Merge pull request #3440 from codespaced/master Fix installing mathjax from downloaded file via command line Fix `mathjax.py: error: argument tarball: invalid int value: 'mathjax-xxx.zip'` when running `python -m IPython.external.mathjax mathjax-xxx.zip`.

File last commit:

r10723:2b73e10d
r10973:ef83852d merge
Show More
login.html
40 lines | 900 B | text/html | HtmlLexer
{% extends "page.html" %}
{% block stylesheet %}
{{super()}}
<link rel="stylesheet" href="{{ static_url("auth/css/override.css") }}" type="text/css" />
{% endblock %}
{% block login_widget %}
{% endblock %}
{% block site %}
<div id="ipython-main-app">
{% if login_available %}
<form action="{{base_project_url}}login?next={{next}}" method="post">
Password: <input type="password" class='ui-widget ui-widget-content' name="password" id="password_input">
<input type="submit" value="Log in" id="login_submit">
</form>
{% endif %}
{% if message %}
{% for key in message %}
<div class="message {{key}}">
{{message[key]}}
</div>
{% endfor %}
{% endif %}
<div/>
{% endblock %}
{% block script %}
<script src="{{static_url("auth/js/loginmain.js") }}" type="text/javascript" charset="utf-8"></script>
{% endblock %}