-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathreset.php
55 lines (44 loc) · 1.54 KB
/
reset.php
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
44
45
46
47
48
49
50
51
52
53
54
55
<?php include("includes/header.php") ?>
<div class="row">
<div class="col-lg-6 col-lg-offset-3">
<?php display_message(); ?>
<?php password_reset(); ?>
</div>
</div>
<div class="row">
<div class="col-md-6 col-md-offset-3">
<div class="panel panel-login">
<div class="panel-heading">
<div class="row">
<div class="col-xs-12">
<h3>Reset Password</h3>
</div>
</div>
<hr>
</div>
<div class="panel-body">
<div class="row">
<div class="col-lg-12">
<form id="register-form" method="post" role="form" >
<div class="form-group">
<input type="password" name="password" id="password" tabindex="2" class="form-control" placeholder="Password" required>
</div>
<div class="form-group">
<input type="password" name="confirm_password" id="confirm-password" tabindex="2" class="form-control" placeholder="Confirm Password" required>
</div>
<div class="form-group">
<div class="row">
<div class="col-sm-6 col-sm-offset-3">
<input type="submit" name="reset-password-submit" id="reset-password-submit" tabindex="4" class="form-control btn btn-register" value="Reset Password">
</div>
</div>
</div>
<input type="hidden" class="hide" name="token" id="token" value="<?php echo token_generator(); ?>">
</form>
</div>
</div>
</div>
</div>
</div>
</div>
<?php include("includes/footer.php") ?>