-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreset.html
More file actions
28 lines (27 loc) · 831 Bytes
/
reset.html
File metadata and controls
28 lines (27 loc) · 831 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
28
<!-- index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Reset Password</title>
<link rel="stylesheet" href="styling/basic.css">
<!-- <link rel="stylesheet" href="styling/login.css"> -->
</head>
<body>
<div id="app">
<!-- <h1>Bear Mail</h1>
<h2>A bare necessities email client</h2> -->
<div class="container">
<div class="reset">
<h3>Reset Password:</h3>
<form id="reset-form">
<input type="email" id="email" placeholder="Email" required>
<button class="button" role="button">Confirm</button>
</form>
</div>
</div>
</div>
<script src="reset.js"></script>
</body>
</html>