forked from blockcypher/explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforgot_pw.html
39 lines (30 loc) · 985 Bytes
/
forgot_pw.html
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{% extends "base.html" %}
{% load i18n %}
{% load staticfiles %}
{% block title %}{% trans "Reset Password" %}{% endblock title %}
{% block page_header %}
<h1>{% trans "Reset Password" %}</h1>
{% endblock page_header %}
{% block content %}
<div class="form-page">
<div class="container">
<div class="row">
<div class="col-md-4 col-md-offset-4">
<div class="form-well">
<form role="form" method="post" action="{% url "forgot_password" %}">
{% load crispy_forms_tags %}
{{ form|crispy }}
{% csrf_token %}
<p class="text-center">
<button type="submit" class="btn btn-primary btn-lg btn-block">{% trans "Reset Password" %}</button>
</p>
</form>
<p class="text-center reset">
Or, <a href="{% url 'signup' %}">{% trans "create a new account" %}</a>.
</p>
</div>
</div>
</div>
</div>
</div>
{% endblock content %}