-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforgotpwd.html
39 lines (34 loc) · 1.02 KB
/
forgotpwd.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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>Brick ball</title>
<meta name="keywords" content="brick ball forgot password page">
<meta name="description"
content="breakout game for web browser forgot password page">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="images/brickball-icon.png">
<link rel="stylesheet" type="text/css" href="css/brickball.css">
</head>
<body>
<div id="container">
<header>
<h1><a class="heading" href="brickball.php">brick ball</a></h1>
</header>
<div class="form-response">
<h2>Forgot Password</h2>
<form class="tryagain" action="maillink.php" method="post"
autocomplete="on">
<fieldset>
<label><b>Email:</b></label>
<input type="email" placeholder="Enter Email Address" name="email"
maxlength="255" required>
<div class="clearfix">
<button type="submit">Next</button>
</div>
</fieldset>
</form>
</div>
</div>
</body>
</html>