datatracker/ietf/templates/registration/password_reset.html
2011-08-26 18:03:34 +00:00

31 lines
711 B
HTML

{% extends "registration/base.html" %}
{% block title %}Password Reset Request{% endblock %}
{% block content %}
<div id="register_page">
<h1>Password Reset Request</h1>
{% if success %}
<p>Your password reset request has been successfully received. <br />
We have sent you an email with instructions on how to set a new password.</p>
<p>Best regards,
<br />
<br />
<blockquote>
The datatracker login manager service<br />
(for the IETF Secretariat)
</blockquote>
</p>
{% else %}
<form action="" method="POST">
<table class="register-form">
{{ form }}
</table>
<div class="submit_row">
<input type="submit" value="Request password reset" />
</div>
</form>
{% endif %}
</div>
{% endblock %}