Mercurial > public > sg101
view sg101/templates/accounts/password_reset.html @ 1117:dd57bacde961
Convert password reset to v3 design.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Wed, 20 Jul 2016 20:54:36 -0500 |
parents | ee87ea74d46b |
children |
line wrap: on
line source
{% extends 'v3/base.html' %} {% block title %}Reset Password{% endblock %} {% block content %} <h2>Reset Password</h2> <p>Forgot your password? No problem. Just enter your email address and we will send you instructions on how to reset it. </p> <form method="post" action=".">{% csrf_token %} {{ form.non_field_errors }} {{ form.email.errors }} <div class="row"> <div class="medium-6 columns"> <label for="{{ form.email.id_for_label }}">{{ form.email.label }} {{ form.email }} </label> </div> </div> <input type="submit" value="Send Reset Password Email" class="primary button" /> </form> {% endblock %}