##// END OF EJS Templates
add menu to switch between hsplit and vsplit pager...
add menu to switch between hsplit and vsplit pager Right now, either hsplit or vsplit must have been used when the widget was started up.

File last commit:

r6192:a53b1a9f
r6860:364c58f2
Show More
login.html
42 lines | 796 B | text/html | HtmlLexer
{% extends page.html %}
{% block stylesheet %}
<link rel="stylesheet" href="{{static_url("css/login.css") }}" type="text/css"/>
{% end %}
{% block login_widget %}
{% end %}
{% block site %}
<div id="main_app">
{% if login_available %}
<form action="/login?next={{url_escape(next)}}" method="post">
Password: <input type="password" name="password" id="password_input">
<input type="submit" value="Log in" id="login_submit">
</form>
{% end %}
{% if message %}
{% for key in message %}
<div class="message {{key}}">
{{message[key]}}
</div>
{% end %}
{% end %}
<div/>
{% end %}
{% block script %}
<script src="{{static_url("js/loginmain.js") }}" type="text/javascript" charset="utf-8"></script>
{% end %}