~chipaca/unity-lens-video/custom-user-agent

« back to all changes in this revision

Viewing changes to templates/registration/password_reset_form.html

  • Committer: Janos Gyerik
  • Date: 2011-08-07 19:28:15 UTC
  • Revision ID: janos@axiom-20110807192815-74cbfd0u9dw782c7
added primitive account creation and login

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{% extends "base.html" %}
 
2
 
 
3
{% load i18n %}
 
4
 
 
5
{% block pagetitle %}{% trans "Password reset" %}{% endblock %}
 
6
 
 
7
{% block content %}
 
8
 
 
9
<p>{% trans "Forgotten your password? Enter your e-mail address below, and we'll e-mail instructions for setting a new one." %}</p>
 
10
 
 
11
<form action="" method="post">{% csrf_token %}
 
12
{{ form.email.errors }}
 
13
<p><label for="id_email">{% trans 'E-mail address:' %}</label> {{ form.email }} <input type="submit" value="{% trans 'Reset my password' %}" /></p>
 
14
</form>
 
15
 
 
16
{% endblock %}