-
Notifications
You must be signed in to change notification settings - Fork 0
/
changepassword.html
139 lines (123 loc) · 7.8 KB
/
changepassword.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
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<html>
<head>
<!--How code being decoded-->
<meta charset = "utf-8">
<!--How page being display based on viewport-->
<meta name = "viewport" content = "width = device-width, initial-scale = 1 shrink-to-fit = no">
<!--Add author, web description, keywords for search engine, and copyright-->
<meta name = "author" content = "Yip Zi Xian | Neong Yee Kay | Wong Xie Ling">
<meta name = "description" content = "A pet shop website where customers can view pets, adopt pets, and purchase pets items such as accessories, pet beds or pet treats. Guests visiting the page or customers that are not logged in can only view the website, if they want to make purchases, they will need to login or sign up with our website first. Admins have permission to make changes to the page.">
<meta name = "keywords" content = "Les Petz Shop University Assignment, Les Petz Shop, University Assignment">
<meta name = "copyright" content = "Copyright 2021 Yip Zi Xian, Neong Yee Kay, Wong Xie Ling">
<!--Link to CSS-->
<link rel = "stylesheet" href = "css/loginpage.css">
<!--Link to JavaScript-->
<script type="text/javascript" src="https://gc.kis.v2.scr.kaspersky-labs.com/FD126C42-EBFA-4E12-B309-BB3FDD723AC1/main.js?attr=iuDJkOs0y-C9bbj-plBkDZdslMxu6I65giWhWYWBOW0kTBvsO4v6kpHlDzQnlcVP7ciEBqJBLALaV4UUAshYNGPYgsQnTsq4RYHcXtTjY_u7Ru3Tmaw97ybI91IgdjYlJ9iP1XhiHsolu6yA6lmQbimTzTW7gw_wj5SNHhiKQ1g" charset="UTF-8"></script><link rel="stylesheet" crossorigin="anonymous" href="https://gc.kis.v2.scr.kaspersky-labs.com/E3E8934C-235A-4B0E-825A-35A08381A191/abn/main.css?attr=aHR0cHM6Ly9jZG4uZGlzY29yZGFwcC5jb20vYXR0YWNobWVudHMvODgwMzI4NjQxNzA2MzQ0NDk2LzkwNjc5MzMxOTc5ODAzODU0OC9yZXNldHBhc3N3b3JkLmh0bWw"/><script src = "console.js" defer></script>
<script src = "console.js" defer></script>
<!--Link to Font Awesome v4 and v5-->
<link rel = "stylesheet" href = "https://use.fontawesome.com/releases/v5.15.4/css/all.css">
<link rel = "stylesheet" href = "https://use.fontawesome.com/releases/v5.15.4/css/v4-shims.css">
<!--Link to Google Font-->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat&family=Rubik:wght@300&display=swap" rel="stylesheet">
<!--Link to Pictures file-->
<link rel = "icon" type = image/png href = art/logo.png>
<!--Title-->
<title>Les Pet Shop - Reset Password</title>
</head>
<!--Body-->
<body style = "background-color:#b4a59dd3;">
<!--Navigation Bar & Hamburger-->
<header>
<div class='nav-bar'>
<img class='logo' src='art/logo.png'>
<div class='name'>Les Pet Shop</div>
<div class='nav-btn-container'>
<button onclick="document.location='homepage.html'"><span><i class="fas fa-home fa-2x"></i></span>HOME</button>
<button onclick="document.location='php/pet.php'"><span><i class="fas fa-paw fa-2x"></i></span>PETS</button>
<button onclick="document.location='php/foodAdmin.php'"><span><i class="fas fa-fish fa-2x"></i></span>FOOD</button>
<button onclick="document.location='php/accessories.php'"><span><i class="fas fa-gift fa-2x"></i></span>ACCESSORIES</button>
<button onclick="document.location='php/userprofile.php'"><span><i class="fas fa-user-circle fa-2x"></i></span>PROFILE</button>
<div class="dropdown">
<button onclick="document.location='loginform.html'"><span><i class="fas fa-sign-in-alt fa-2x"></i></span>LOGIN</button>
<div class="dropdown-content">
<a href="loginform.html"><i class="fas fa-sign-in-alt">  Log In</i></a>
<a href="signupform.html"><i class="fas fa-user-plus">  Sign Up</i></a>
<a href="adminaccess.html"><i class="fas fa-crown"> Admin Access</i></a>
</div>
</div>
</div>
</div>
</header>
<!--Change Password Form-->
<div class="container">
<div class="selectcont">
<div class="formtext">
<table>
<h2>Enter your email and new password</h2>
<form action="php/changepass.php" method="post">
<tr>
<td>Email</td>
<td>:</td>
<td><input type="email" name="email" required="required" placeholder="Enter your email"></td>
</tr>
<tr>
<td>New password</td>
<td>:</td>
<td><input type="password" name="password" required="required" placeholder="Enter a new password"></td>
</tr>
<tr>
<td>Confirm password</td>
<td>:</td>
<td><input type="password" name="checkpassword" required="required" placeholder="Re-enter your new password"></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td>
<input type="submit" value="Change">
<input type="reset" value="Reset">
</td>
</tr>
</form>
</table>
</div>
</div>
</div>
<!--Footer-->
<footer>
<div class="footer-flexbox">
<div class='footer-flexbox-item'>
<h3>About Us</h3>
<p>Les Pet Shop is always here for you and your pets. You can find yourself a companion and high quality pet product here!</p>
</div>
<div class='footer-flexbox-item'>
<h3>More From Us</h3>
<ul>
<li><i class="fas fa-paw"></i><a href="php/pet.php" style="color:black;" >Pets</a></li>
<li><i class="fas fa-paw"></i><a href="php/food.php" style="color:black;">Pets Food</a></li>
<li><i class="fas fa-paw"></i><a href="php/accessories.php" style="color:black;">Pets Accessories</a></li>
</ul>
</div>
<div class='footer-flexbox-item'>
<h3>Stay with Us</h3>
<p class="media">
Find us on social media<br><br>
<a href="www.facebook.com" class="fa fa-facebook"></a>
<a href="www.twitter.com" class="fa fa-twitter"></a>
<a href="www.instagram.com" class="fa fa-instagram"></a>
</p>
</div>
<div class='footer-flexbox-item'>
<h3>Contact Us</h3>
<p>2, Jalan Besar 5,<br>50000 Kuala Lumpur, <br>Malaysia</p>
<p>Email: <a href="mailto:lespetshopt@gmail.com" style="color:black;">lespetshopt@gmail.com</a></p>
<p>Phone no: <a href="tel:0312345678" style="color:black;">03-12345678</a></p>
</div>
</div>
<p id="copyright"><b>© 2021 Les Pet Shop (Team Name)</b></p>
</footer>
</body>
</html>