Another HTML validation fix. - Legacy-Id: 9818 Note: SVN reference [9800] has been migrated to Git commit bc73eb76a12f4266e12b38104d0039fef5108e4c
35 lines
858 B
HTML
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 %}
|