forked from Revathi-80/login-page
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
62 lines (49 loc) · 1.85 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Login page</title>
<link rel="stylesheet" href="css/style.css" />
<link rel="shortcut icon" href="/193457387-7104c5a0-6ff0-428c-b7f2-d308f87045f4.ico" type="image/x-icon">
</head>
<body>
<div class="overlay">
<form class="form">
<div class="con">
<header class="head-form">
<h2>Log In</h2>
<p>Login using your username and password</p>
</header>
<br />
<div class="field-set">
<div class="input-field">
<span class="input-item">
<i class="fa-solid fa-user"></i>
</span>
<input class="form-input" id="txt-input" type="text" placeholder="Username" autocomplete="off" required />
</div>
<div class="input-field">
<span class="input-item">
<i class="fa-solid fa-key"></i>
</span>
<input class="form-input" type="password" placeholder="Password" id="pwd" name="Password"
autocomplete="off" required/>
</div>
<button class="login-button"><a href="./sucess.html" style="color: rgb(255, 255, 255);"> LOG IN</a></button>
</div>
<div class="other">
<button class="btn-frgtpass">
<a href="./forgot.html">Forgot Password? </a>
</button>
<button class="btn-sign-up">
<a href="./sign-up.html">Sign Up <i class="fa fa-user-plus" aria-hidden="true"></i></a>
</button>
</div>
</div>
</form>
</div>
<script src="https://kit.fontawesome.com/1b83f7dbef.js" crossorigin="anonymous"></script>
</body>
</html>