-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (38 loc) · 1.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login Form</title>
<link rel="stylesheet" href="Form.css">
</head>
<body>
<div class="body">
<div class="content">
<img src="frontimage.jpg">
<div class="registration">
<p>Not a member ?</p>
<a href="#"> Register now</a>
</div>
<div class="headingsection">
<h2>Hello Again!</h2>
<p>Welcome back you have been missed.</p>
</div>
<form action="FormData.txt" method="get">
<div class="entries">
<input type="text" id="username" placeholder="Enter Username" required>
</div>
<div class="entries">
<input type="password" id="password" placeholder="Enter Password" required>
</div>
<div class="forgetpassword">
<p>Forget Your Password <a href="#"> Recover it here</a>.</p>
</div>
<div class="button">
<button type="submit" class="btn">Sign In</button>
</div>
</form>
</div>
</div>
</body>
</html>