forked from ietf-tools/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpassword_reset.html
More file actions
25 lines (25 loc) · 903 Bytes
/
password_reset.html
File metadata and controls
25 lines (25 loc) · 903 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{# 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 %}