-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (39 loc) · 1.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="style.css">
<title>Login Demo</title>
</head>
<body>
<div class="login-wrapper">
<form action="" class="form">
<img src="img/avatar1.png" alt="">
<h2>Login</h2>
<div class="input-group">
<input type="text" name="loginUser" if="loginUser" required>
<label for="loginUser">User Name</label>
</div>
<div class="input-group">
<input type="password" name="loginPassword" id="loginPassword" required>
<label for="loginPassword">Password</label>
</div>
<input type="submit" value="Login" class="submit-btn">
<a href="#forgot-pw" class="forgot-pw">Forgot Password?</a>
</form>
<div id ="forgot-pw">
<form action="" class="form">
<a href="#" class="close">×</a>
<h2>Reset Password</h2>
<div class="input-group">
<input type="email" name="email" id="email" required>
<label for="email">Email</label>
</div>
<input type="submit" value="Submit" class="submit-btn">
</form>
</div>
</div>
</body>
</html>