pytask/templates/registration/password_reset_form.html
changeset 308 dca28aad6760
parent 307 c6bca38c1cbf
child 532 1f08247a935c
equal deleted inserted replaced
307:c6bca38c1cbf 308:dca28aad6760
    10 <h1>{% trans "Password reset" %}</h1>
    10 <h1>{% trans "Password reset" %}</h1>
    11 
    11 
    12 <p>{% trans "Forgotten your password? Enter your e-mail address below, and we'll e-mail instructions for setting a new one." %}</p>
    12 <p>{% trans "Forgotten your password? Enter your e-mail address below, and we'll e-mail instructions for setting a new one." %}</p>
    13 
    13 
    14 <form action="" method="post">
    14 <form action="" method="post">
       
    15 {% csrf_token %}
    15 {{ form.email.errors }}
    16 {{ form.email.errors }}
    16 <p><label for="id_email">{% trans 'E-mail address:' %}</label> {{ form.email }} <input type="submit" value="{% trans 'Reset my password' %}" /></p>
    17 <p><label for="id_email">{% trans 'E-mail address:' %}</label> {{ form.email }} <input type="submit" value="{% trans 'Reset my password' %}" /></p>
    17 </form>
    18 </form>
    18 
    19 
    19 {% endblock %}
    20 {% endblock %}