euscanwww: included django-registration and tweaked templates

Signed-off-by: volpino <fox91@anche.no>
This commit is contained in:
volpino
2012-06-09 17:11:28 +02:00
parent 4246c544ad
commit d34a0c4992
20 changed files with 200 additions and 1 deletions

View File

@ -0,0 +1,15 @@
{% extends "registration/_registration_base.html" %}
{% block title %}Confirm password reset{% endblock %}
{% block content %}
Enter your new password below to reset your password:
<form method="post" action="">{% csrf_token %}
<table>
{{ form.as_table }}
<tr>
<td></td>
<td><input type="submit" value="Set password" /></td>
</tr>
</table>
</form>
{% endblock %}