forked from Manisha011/online-game-store
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Forgot Password.html
47 lines (38 loc) · 1.16 KB
/
Forgot Password.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
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="Forgot Password.css">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap" rel="stylesheet">
</head>
<body>
<style>
body div{
background-image: url("download.png");
height: 100%;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
</style>
<nav class="stroke">
<ul style="float:right;">
<li><a href="1.html">Home</a></li>
<li><a href="login.html">Log In</a></li>
<li><a href="About.html">About</a></li>
</ul>
</nav>
<div class="wrap">
<img class="bg" src="library.jpg" alt="">
<div class="content">
<h1>Forgot<br>Password</h1>
<div class="container">
<form action="login.html">
<input type="email" placeholder="Registered Email" name="uname" required autofocus><br>
<button type="submit" onclick="window.alert('Credentials sent to Email ID')">Submit</button><br>
</form>
<p id="p1"></p>
</div>
</div>
</div>
</body>
</html>