-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (48 loc) · 2.03 KB
/
index.html
File metadata and controls
49 lines (48 loc) · 2.03 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
42
43
44
45
46
47
48
49
<!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="style.css">
<link rel="stylesheet" href="home.html">
<link rel="stylesheet" href="home.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Raleway:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
<nav class="navbar">
<div class="nav-links">
<a href="#">Home</a>
<a href="#">About</a>
<a href="#">Contact</a>
</div>
<a href="#" class="nav-button signup-button">Sign Up</a>
</nav>
<div class="container">
<div class="login-section">
<div class="login-card">
<div class="avatar-placeholder">
<!-- You can replace this with an actual icon or image -->
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" width="60px" height="60px">
<path d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"/>
</svg>
</div>
<form class="login-form">
<div class="input-group">
<input type="text" id="username" name="username" placeholder="Username/Email" required>
</div>
<div class="input-group">
<input type="password" id="password" name="password" placeholder="Password" required>
</div>
<button type="submit" class="login-button">LOGIN</button>
</form>
</div>
</div>
<div class="welcome-section">
<h1>Welcome</h1>
<p>Enter your credentials to access your account.</p>
</div>
</div>
</body>
</html>