32 lines
947 B
HTML
32 lines
947 B
HTML
{% extends "base_site" %}
|
|
|
|
{% block breadcrumbs %}{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
{% if error_message %}
|
|
<p class="errornote">{{ error_message }}</p>
|
|
{% endif %}
|
|
<div id="content-main">
|
|
<form action="{{ app_path }}" method="post">
|
|
|
|
<p class="aligned">
|
|
<label for="id_username">Username:</label> <input type="text" name="username" id="id_username" />
|
|
</p>
|
|
<p class="aligned">
|
|
<label for="id_password">Password:</label> <input type="password" name="password" id="id_password" />
|
|
<input type="hidden" name="this_is_the_login_form" value="1" />
|
|
<input type="hidden" name="post_data" value="{{ post_data }}" />{% comment %} <span class="help">Have you <a href="/password_reset/">forgotten your password</a>?</span>{% endcomment %}
|
|
</p>
|
|
|
|
<div class="aligned ">
|
|
<label> </label><input type="submit" value="Log in" />
|
|
</div>
|
|
</form>
|
|
|
|
<script type="text/javascript">
|
|
document.getElementById('id_username').focus()
|
|
</script>
|
|
</div>
|
|
{% endblock %}
|