-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpassword_reset_form.html
More file actions
31 lines (25 loc) · 1.16 KB
/
password_reset_form.html
File metadata and controls
31 lines (25 loc) · 1.16 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
26
27
28
29
30
{% load static %}
<link rel="stylesheet" href="{% static 'css/index.css' %}" type="text/css">
<head>
<meta charset="UTF-8">
<title>Reset Password</title>
</head>
<div class="page-wrap gradient-primary">
<div class="container">
<h1 class="logo"><a href="https://www.heroku.com" title="Heroku">Heroku</a></h1>
<div class="panel">
<h2 class="h3">{{ title }}</h2>
<p style="padding: 40px 40px 0px 40px">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" style="padding-left: 20px;">
<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>
</div>