forked from openhab/openhab-cloud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlostpasswordreset.ejs
43 lines (43 loc) · 1.81 KB
/
lostpasswordreset.ejs
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
40
41
42
43
<% section = 'login' %>
<%- include ('header.ejs') %>
<!-- page content -->
<section id="content">
<header class="headerPage">
<div class="container clearfix">
<div class="row">
<h1 class="span8"><span>Lost my password</span></h1>
<div class="span4" id="navTrail"> <a href="/" class="homeLink">home</a><span>/</span>Login</div>
</div>
</div>
</header>
<div class="slice clearfix">
<div class="container">
<%- include ('alerts.ejs') %>
<div class="row">
<div class="span4"></div>
<div class="span4">
<h3>Set your new password</h3>
<div class="divider"><span></span></div>
</div>
</div>
<div class="row">
<div class="span4"></div>
<div class="span4">
<form method="post" action="/lostpasswordreset" id="contactform">
<input type="hidden" name="_csrf" value="<%= token %>" class="form-control">
<input type="hidden" name="resetCode" value="<%= resetCode %>" class="form-control">
<label for="password"></label>
<input type="password" name="password" placeholder="New password">
<label for="password2"></label>
<input type="password" name="password2" placeholder="Repeat new password">
<br />
<button name="submit" type="submit" class="btn" id="submit">Reset password</button>
</form>
<div id="message"></div>
</div>
</div>
</div>
</div>
</section>
<!-- page content -->
<%- include ('footer.ejs') %>