source: treasury/remit_templates/registration/login.html @ 1732748

client
Last change on this file since 1732748 was 1732748, checked in by Alex Dehnert <adehnert@…>, 15 years ago

Expunge "UA" from the templates

  • Property mode set to 100644
File size: 603 bytes
Line 
1{% extends "base.html" %}
2
3{% block title %}Log in to Remit{% endblock %}
4
5{% block content %}
6
7<h2>Log in to Remit</h2>
8
9{% if form.errors %}
10<p>Your username and password didn't match. Please try again.</p>
11{% endif %}
12
13<form method="post" action="{% url django.contrib.auth.views.login %}">
14<table>
15<tr>
16    <td>{{ form.username.label_tag }}</td>
17    <td>{{ form.username }}</td>
18</tr>
19<tr>
20    <td>{{ form.password.label_tag }}</td>
21    <td>{{ form.password }}</td>
22</tr>
23</table>
24
25<input type="submit" value="login" />
26<input type="hidden" name="next" value="{{ next }}" />
27</form>
28
29{% endblock %}
Note: See TracBrowser for help on using the repository browser.