-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (45 loc) · 1.84 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Metadata -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Title of the page -->
<title>Login Form with HTML and CSS | @sauravxcode </title>
<!-- External CSS file for styling -->
<link rel="stylesheet" href="assets/css/styles.css">
<!-- External library for icons -->
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
</head>
<body>
<!-- Container for the login form -->
<div class="container-box">
<!-- Form for user input -->
<form id="LoginForm" action="">
<h1>Login</h1>
<!-- Input box for username -->
<div class="input-box">
<input type="text" placeholder="Username" required>
<i class='bx bxs-user'></i>
</div>
<!-- Input box for password -->
<div class="input-box">
<input type="password" placeholder="Password" required>
<i class='bx bxs-lock-alt'></i>
</div>
<!-- Section for "Remember me" checkbox and "Forgot Password" link -->
<div class="remember-forgot">
<label><input type="checkbox"> Remember me </label>
<a href="https://github.com/sauravxcode/beautiful-glass-login-form">Forgot Password?</a>
</div>
<!-- Button for form submission -->
<button type="submit" class="btn">Login</button>
<div class="register-link">
<p>Don't have an acccount?
<a href="https://github.com/sauravxcode/beautiful-glass-login-form">Register</a>
</p>
</div>
</form>
</div>
</body>
</html>