source: remit/remit_templates/registration/login.html @ f332ade

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
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.