-
Notifications
You must be signed in to change notification settings - Fork 0
/
forget.html
42 lines (34 loc) · 1.18 KB
/
forget.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
<!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="forget">
<form>
<h2 align="center" style="color: #fff;">Forget Password</h2><br>
<h5 style="font-size: 14px; color: yellow;">Enter email here that you used on your account.We send link on your email to reset your password.</h5>
<input type="text" name="username" placeholder="Enter your email"><br><br>
<input type="button" value="send" onclick="myFunction()"><br><br>
<a href="log in.html" style="text-decoration: none;">Go back to Home page</a><br><br>
<div id="snackbar">Link send on your email successfully!!!</div>
</form>
</div>
</div>
</body>
</html>