-
Notifications
You must be signed in to change notification settings - Fork 1
/
login.html
30 lines (30 loc) · 899 Bytes
/
login.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Login page</title>
<link rel="stylesheet" href="login.css">
</head>
<body>
<div class="center">
<h1>Login</h1>
<form method="post">
<div class="txt_field">
<input type="text" required>
<span></span>
<label>Enter Your Email</label>
</div>
<div class="txt_field">
<input type="password" required>
<span></span>
<label>Enter Your Password</label>
</div>
<div class="pass">Forgot Password?</div>
<input type="submit" value="Login">
<div class="signup_link">
Not a member? <a href="signup.html">Signup</a>
</div>
</form>
</div>
</body>
</html>