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.
45 lines
1.0 KiB
45 lines
1.0 KiB
{% extends "page.html" %}
|
|
|
|
{% block lesscss %}
|
|
{% if use_less %}
|
|
<link rel="stylesheet/less" href="{{ static_url("auth/less/style.less") }}" type="text/css" />
|
|
{% else %}
|
|
<link rel="stylesheet" href="{{ static_url("auth/css/style.min.css") }}" type="text/css"/>
|
|
{% endif %}
|
|
{% endblock lesscss%}
|
|
|
|
|
|
{% 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 %}
|