##// END OF EJS Templates
Backport PR #2546: use 4 Pythons to build 4 Windows installers...
Backport PR #2546: use 4 Pythons to build 4 Windows installers See [stdlib docs](http://docs.python.org/2/distutils/builtdist.html#cross-compiling-on-windows) for why this has to be. I don't know a better way than hard-coding the paths to four Pythons, since there is no natural way to have all of these available on your PATH. This script (with PROPER and FIXED additions) is how I built/uploaded the two fixed installers. closes #2531

File last commit:

r7993:e868f463
r9837:c4e7f5b3
Show More
login.html
42 lines | 851 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="{{base_project_url}}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 %}