client
Last change
on this file since f332ade was
92ca60e,
checked in by Alex Dehnert <adehnert@…>, 15 years ago
|
Rename treasury to remit
|
-
Property mode set to
100644
|
File size:
603 bytes
|
Rev | Line | |
---|
[dbc9bf9] | 1 | {% extends "base.html" %} |
---|
| 2 | |
---|
[1732748] | 3 | {% block title %}Log in to Remit{% endblock %} |
---|
[dbc9bf9] | 4 | |
---|
| 5 | {% block content %} |
---|
| 6 | |
---|
[1732748] | 7 | <h2>Log in to Remit</h2> |
---|
[dbc9bf9] | 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.