-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpassword_reset_form.html
More file actions
26 lines (25 loc) · 1.07 KB
/
password_reset_form.html
File metadata and controls
26 lines (25 loc) · 1.07 KB
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
{% load static %}
<link rel="stylesheet" href="{% static 'css/main.css' %}" type="text/css">
<head>
<meta charset="UTF-8">
<title>Reset Password</title>
</head>
<div class="page-wrap gradient-primary">
<div class="container">
<div class="panel">
<h2 class="h3">{{ title }}</h2>
<p class="tc gray-90 inverted-wrapper">Forgotten your password? Enter your email address below, and we'll email instructions for setting a new one.</p>
<form method="post">
{% csrf_token %}
<div class="form-group">
<label for="email">{{ form.email.label_tag }}</label>
<input autofocus="off" class="form-control" id="email" name="email"
:placeholder="Email" type="email">
<div class="error">{{ form.email.errors }}</div>
</div>
<button class="btn btn-primary btn-lg btn-block" name="commit" type="submit">Submit</button>
</form>
</div>
</div>
{% include "base/footer.html" %}
</div>