-
Notifications
You must be signed in to change notification settings - Fork 0
/
reset.html
43 lines (35 loc) · 1.19 KB
/
reset.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
<!DOCTYPE html>
<html>
<head>
<title></title>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<div class="wrapper">
<div class="header">
<div class="logo">
<img src="img/logo.jpg">
</div>
<div class="menu">
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="about.html">ABOUT</a></li>
<li><a href="gallery.html">GALLERY</a></li>
<li><a href="contact.html">CONTACT</a></li>
</ul>
</div>
</div>
<div class="reset">
<form>
<h2 align="center" style="color: #fff;">Reset Password</h2>
<input type="password" name="username" placeholder="Old Password"><br><br>
<input type="password" name="username" placeholder="New Password"><br><br>
<input type="password" name="username" placeholder="Confirm New Password"><br><br>
<input type="button" value="Save" onclick="myFunction()"><br><br>
<a href="log in.html" style="text-decoration: none;">Go back to Home Page</a><br><br>
<div id="msg">Your Password Changed Successfully</div>
</form>
</div>
</div>
</body>
</html>