datatracker/ietf/templates/registration/password_reset.html
Lars Eggert cc723ce449 More fixes.
- Legacy-Id: 19899
2022-01-31 19:17:50 +00:00

26 lines
915 B
HTML

{# bs5ok #}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% extends "base.html" %}
{% load origin %}
{% load django_bootstrap5 %}
{% block title %}Password reset{% endblock %}
{% block content %}
{% origin %}
{% if success %}
<h1>Password reset successful</h1>
<p class="alert alert-success my-3">
Your password reset request has been successfully received.
We have sent you an email with instructions on how to set a new password.
</p>
{% else %}
<h1>Password reset</h1>
<p class="alert alert-info my-3">
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 %}