diff options
Diffstat (limited to 'templates/registration')
-rw-r--r-- | templates/registration/login.html | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/templates/registration/login.html b/templates/registration/login.html index 388d41b..da61169 100644 --- a/templates/registration/login.html +++ b/templates/registration/login.html @@ -7,14 +7,21 @@ <p>Your username and password didn't match. Please try again.</p> {% endif %} +<div align="center"> +<pre>This uses the registration/login.html template</pre> + <form method="post" action=".">{% csrf_token %} <table> <tr><td>{{ form.username.label_tag }}</td><td>{{ form.username }}</td></tr> <tr><td>{{ form.password.label_tag }}</td><td>{{ form.password }}</td></tr> </table> + + <input type="submit" value="login" /> <input type="hidden" name="next" value="{{ next }}" /> </form> + +</div> {% endblock %} |