datatracker/ietf/templates/registration/password_reset.html
2021-11-11 18:31:43 +00:00

30 lines
823 B
HTML

{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% extends "base.html" %}
{% load origin %}
{% load django_bootstrap5 %}
{% block title %}Password reset{% endblock title %}
{% 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 %}
{% bootstrap_button button_type="submit" content="Reset password" %}
</form>
{% endif %}
{% endblock content %}