datatracker/ietf/templates/registration/password_reset.html
Ole Laursen 4d4cf93f22 Make password reset use username throughout and reword the reset page
so it's clear that one has to enter the account name and not just any
email address associated with the account.
 - Legacy-Id: 11171
2016-05-06 12:32:11 +00:00

32 lines
794 B
HTML

{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% load bootstrap3 %}
{% block title %}Password reset{% endblock %}
{% block content %}
{% origin %}
{% if success %}
<h1>Password reset successful</h1>
<p>Your password reset request has been successfully received .</p>
<p>We have sent you an email with instructions on how to set a new password.</p>
{% else %}
<h1>Password reset</h1>
<p>Please enter the account for which you would like to reset the password.</p>
<form method="post">
{% csrf_token %}
{% bootstrap_form form %}
{% buttons %}
<button type="submit" class="btn btn-warning">Reset password</button>
{% endbuttons %}
</form>
{% endif %}
{% endblock %}