##// END OF EJS Templates
fix tooltip keep focus on wrong cell...
fix tooltip keep focus on wrong cell check that the cell the tooltip is giving focus back is the currently selected cell

File last commit:

r6840:ff6b85da
r7204:563ee354
Show More
login.html
42 lines | 832 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" class='ui-widget ui-widget-content' 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 %}