-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathindex.html
44 lines (41 loc) · 1.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login Page</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css">
</head>
<body>
<div class="container">
<label class="theme-switch">
<i class="fa-solid fa-sun" id="sun-icon"></i>
<input type="checkbox" id="theme-toggle">
<span class="slider"></span>
<i class="fa-solid fa-moon" id="moon-icon"></i>
</label>
<p class="cross">
<i class="fa-solid fa-xmark" style="color: #FFD43B; font-size: xx-large;"></i>
</p>
<h1 class="login">Sign In</h1>
<br>
<br>
<p class="para">Please enter your username and password</p>
<br>
<input class="input1" type="username" placeholder="Username" required>
<br>
<br>
<br>
<input class="input2" id="password" type="password" placeholder="Enter Password" oninput="password_strength()">
<div id="Password_strength_status"></div>
<br>
<p class="para2">Forgot<span> <a href="forgot_password.html">password?</a></span></p>
<br>
<button class="button" type="submit">Sign In</button>
<p>Or Sign In with</p>
<img src="google-icon-1.png">
</div>
<script src="script.js"></script>
</body>
</html>