-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (37 loc) · 1.47 KB
/
Copy pathindex.html
File metadata and controls
41 lines (37 loc) · 1.47 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Professional Login</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div id="login-card" class="card">
<h2>Welcome Back</h2>
<p class="subtitle">Please enter your details</p>
<form id="login-form">
<div class="input-group">
<label for="username">Username</label>
<input type="text" id="username" placeholder="Enter username">
<small class="error-msg" id="user-error"></small>
</div>
<div class="input-group">
<label for="password">Password</label>
<input type="password" id="password" placeholder="••••••••">
<small class="error-msg" id="pass-error"></small>
</div>
<button type="submit" id="login-btn">Sign In</button>
</form>
</div>
<div id="welcome-page" class="card hidden">
<div class="success-icon">✓</div>
<h2>Login Successful!</h2>
<p>Welcome to your professional dashboard, <span id="display-user"></span>.</p>
<button onclick="location.reload()">Logout</button>
</div>
</div>
<script src="script.js"></script>
</body>
</html>