-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathresetpwd.php
executable file
·58 lines (58 loc) · 1.92 KB
/
resetpwd.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
56
57
58
<?php
require_once('config.inc.php');
require_once('secure.inc.php');
?>
<!DOCTYPE html>
<html lang="en-US">
<head>
<?php require('head.php') ?>
<title>Reset Password | QuickAuth</title>
</head>
<body>
<div class="wrapper">
<?php require('header.php'); ?>
<?php require('modals.php'); ?>
<div class="container">
<div id="resetpwd">
<form id="form-resetpwd" action="javascript:void(0)">
<h2>Reset Password</h2>
<div class="form-group">
<label class="sr-only" for="form-resetpwd-username">Username</label>
<div class="input-group">
<div class="input-group-addon">
<span class="glyphicon glyphicon-user" aria-hidden="true"></span>
</div>
<input type="text" class="form-control" id="form-resetpwd-username" placeholder="Username"
required/>
</div>
</div>
<div class="form-group">
<label class="sr-only" for="form-resetpwd-password">Password</label>
<div class="input-group">
<div class="input-group-addon">
<span class="glyphicon glyphicon-lock" aria-hidden="true"></span>
</div>
<input type="password" class="form-control" id="form-resetpwd-password"
placeholder="New Password" required/>
</div>
</div>
<div class="form-group">
<label class="sr-only" for="form-resetpwd-repeat">Repeat</label>
<div class="input-group">
<div class="input-group-addon">
<span class="glyphicon glyphicon-lock" aria-hidden="true"></span>
</div>
<input type="password" class="form-control" id="form-resetpwd-repeat"
placeholder="Repeat new password" required/>
</div>
</div>
<button id="form-resetpwd-submit" class="btn btn-lg btn-primary btn-block" type="submit">Reset</button>
</form>
</div>
</div> <!-- /container -->
<div class="push"></div>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/js/md5.min.js"></script>
<?php require('footer.php'); ?>
</body>
</html>