-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresetPassword.php
67 lines (63 loc) · 2.77 KB
/
resetPassword.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
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> Reset Password | TEAM-X </title>
<link rel="stylesheet" href="assets/styles/style.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body class="bg-dark font-monospace">
<div id="login" class="container bg-dark">
<div class="row-fluid">
<div class="span12">
<div class="login well well-small">
<div class="center">
<img src="dist/logo/teamx-text-color.png" alt="OUR LOGO" class="mt-5">
<h1 class="mt-4">
E-Commerce Website
<span class="fs-6">
by TEAM-X
</span>
</h1>
</div>
<form class="login-form" id="resetPass" method="post" accept-charset="utf-8">
<h2 id="email"> Your Username </h2>
<div class="control-group mb-4">
<div class="input-prepend">
<span class="add-on"><i class="icon-lock"></i></span>
<input name="data[User][password]" required="required" placeholder=" " type="username" id="UsernameReset">
</div>
</div>
<h2 id="email"> New Password </h2>
<div class="control-group mb-4">
<div class="input-prepend">
<span class="add-on"><i class="icon-lock"></i></span>
<input name="data[User][password]" required="required" placeholder=" " type="password" id="newPassword">
</div>
</div>
<h2 id="password"> Repeat Password </h2>
<div class="control-group mb-4">
<div class="input-prepend">
<span class="add-on"><i class="icon-lock"></i></span>
<input name="data[User][password]" required="required" placeholder=" " type="password" id="repeatPassword">
</div>
</div>
<div class="control-group">
<p class="text-white">Already have an account? <a href="index.php">Sign In</a></p>
</div>
<div class="control-group mt-4 text-center bg-primary">
<input class="btn btn-custom text-white fw-bolder py-2" type="submit" value="reset">
</div>
</form>
</div>
<!-- login -->
</div>
</div>
<!-- row-fluid -->
</div>
<!-- container -->
</body>
<?php include_once('script.php'); ?>
</html>