-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreset.php
35 lines (29 loc) · 818 Bytes
/
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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
<?php
include "snippet/head.php";
?>
</head>
<body>
<div id="reset-page" data-role="page" data-theme="b">
<div data-role="header">
<h1>Password Reset</h1>
</div>
<div data-role="main" class="ui-content">
<form id="reset-form">
<label for="password">New Password:</label>
<input name="password" type="password" maxlength="255" value="" required>
<label for="password2">Confirm New Password:</label>
<input name="password2" type="password" maxlength="255" value="" required>
<input type="submit" value="Reset">
</form>
</div>
</div>
<?php
include "snippet/snippet2.php";
?>
<!-- my modules -->
<script src="js/module/user/reset.js"></script>
</body>
</html>