-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (33 loc) · 1.05 KB
/
index.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
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
<div class="container">
<span class="signup">
You don't have an account? <a href="">Sign up</a>
</span>
<span class="forgot-password">
Did you forgot your password?
</span>
<span class="forgot-password-instructions">
Enter your email address you're using for your account below and we will send you a password reset link
</span>
<span class="email-address">
Email Address
</span>
<input type="text" placeholder="[email protected]">
</input>
<button class="request-reset-link">
Request Reset Link
</button>
<span class="back-to-signin">
<a href="">Back to Sign In</a>
</span>
</div>
<script src="script.js"></script>
</body>
</html>