forked from picoCTF/picoCTF
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreset.html
33 lines (32 loc) · 1.06 KB
/
reset.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
---
layout: default
title: Password Reset
post_scripts:
- js/profile.js
---
<div class="container">
<div class="well">
<div class="row">
<div class="col-md-6">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Update User Password</h3>
</div>
<div class="panel-body">
<div class="col-md-10 col-md-offset-1">
<form class="form-horizontal" id="password-reset-form">
<div class="form-group">
<input name="new-password" class="form-control" type="password" placeholder="New Password">
<input name="new-password-confirmation" class="form-control" type="password" placeholder="Repeat New Password">
</div>
<div class="form-group">
<button id="password-reset-button" class="btn btn-primary" type="submit">Update Password</button>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</div>