-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogout.html
42 lines (42 loc) · 1.45 KB
/
logout.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
<!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="styles.css">
</head>
<body>
<header>
<div class="logo-container">
<div class="circle">
<div class="inner-circle">
<span class="initials">JW</span>
</div>
</div>
<div class="logo-text">Login System</div>
</div>
</header>
<div class="login-container" id="loginContainer">
<h1>Welcome Back</h1>
<form id="loginForm" onsubmit="return validateLoginForm()">
<div class="input-group">
<label for="username">Username</label>
<input type="text" id="username" name="username" required>
</div>
<div class="input-group">
<label for="password">Password</label>
<input type="password" id="password" name="password" required>
</div>
<button type="submit">Login</button>
</form>
<div id="error-message"></div>
<p>Don't have an account? <a href="register.html">Create one</a></p>
</div>
<footer>
<p>© 2024 Login System. All rights reserved.</p>
<p>Contact: [email protected]</p>
</footer>
<script src="scripts.js"></script>
</body>
</html>