-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforgotpass.html
More file actions
27 lines (25 loc) · 800 Bytes
/
forgotpass.html
File metadata and controls
27 lines (25 loc) · 800 Bytes
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
<html>
<head>
<title>Login Form Design</title>
<link rel="stylesheet" type="text/css" href="login.css">
<script type="text/javascript">
function con()
{
alert('Reset Password link is send to your Email ID')
}
</script>
<body>
<div class="loginbox">
<img src="avatar.png" class="avatar">
<h1>Find Your Acount</h1>
<form action="cse202.html" onsubmit="con()">
<p>Email ID</p>
<input type="Email" name="" placeholder="Enter Email" required="">
<p>Phone Number</p>
<input type="number" name="" placeholder="Enter Phone number" required="">
<input type="submit" name="" value="submit" >
</form>
</div>
</body>
</head>
</html>