datatracker/ietf/templates/registration/password_reset.html
Henrik Levkowetz a004a8ffdf Merged in [9800] from lars@netapp.com:
Another HTML validation fix.
 - Legacy-Id: 9818
Note: SVN reference [9800] has been migrated to Git commit bc73eb76a12f4266e12b38104d0039fef5108e4c
2015-07-19 14:23:53 +00:00

35 lines
858 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>
{% bootstrap_messages %}
<p>Please enter an email address associated with 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 %}