-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (25 loc) · 954 Bytes
/
Copy pathindex.html
File metadata and controls
27 lines (25 loc) · 954 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>StudyMate | Login</title>
<link rel="stylesheet" href="../static/style.css">
</head>
<body>
<div class="glass-card">
<h1>StudyMate</h1>
<p>Your AI Career Architect</p>
<form id="loginForm">
<input type="text" id="username" placeholder="Username" required />
<input type="password" id="password" placeholder="Password" required />
<button type="submit" class="btn btn-primary">Login</button>
</form>
<div style="margin-top: 20px;">
<span style="font-size: 0.8rem;">New here?</span>
<button onclick="window.location.href='signin.html'" class="btn btn-secondary" style="width: auto; padding: 5px 15px; margin-left: 10px;">Sign Up</button>
</div>
</div>
<script src="../static/script.js"></script>
</body>
</html>