-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlogin.html
More file actions
78 lines (71 loc) · 3.89 KB
/
Copy pathlogin.html
File metadata and controls
78 lines (71 loc) · 3.89 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en" data-bs-theme="dark">
<head>
<meta charset="utf-8">
<meta name="description" content="Roadmap login form for connected progress sync.">
<meta name="author" content="Sage-Code Laboratory">
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
<meta name="robots" content="noindex, nofollow">
<title>Roadmap Login</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
<link rel="icon" type="image/png" href="/assets/images/favicon.ico">
<link rel="stylesheet" href="/assets/css/sage.css">
</head>
<body>
<div class="container">
<header id="dynamic-header" class="container-fluid pb-2"></header>
<section class="hero-blackboard">
<div class="blackboard-content">
<h1 class="chalk-text">Roadmap Login</h1>
<p class="chalk-body mt-1">Sign in to sync roadmap progress to a remote database. After log-in you will be able to continue your study, and take quizzes. Register for an account if you do not have one.</p>
</div>
</section>
<section class="container my-4" aria-label="Login form">
<div class="card-slate p-4">
<form id="roadmap-login-form">
<div class="mb-3">
<label for="login-email" class="form-label">Email</label>
<input id="login-email" name="email" type="email" class="form-control" placeholder="you@example.com" autocomplete="email">
</div>
<div class="mb-3">
<label for="login-password" class="form-label">Password</label>
<div class="input-group">
<input id="login-password" name="password" type="password" class="form-control" placeholder="Enter your password" autocomplete="current-password">
<button type="button" class="btn btn-outline-secondary" data-password-target="login-password" aria-label="Show or hide password" aria-pressed="false">
<i class="bi bi-eye" aria-hidden="true"></i>
</button>
</div>
</div>
<div class="action-buttons mt-3">
<button type="submit" class="text-center first-page-nav-btn action-button first-page-nav-btn-login" aria-label="Sign in to roadmap profile">
<i class="bi bi-box-arrow-in-right" aria-hidden="true"></i>
<span>Sign In</span>
</button>
<a href="/roadmap/" class="text-center first-page-nav-btn action-button first-page-nav-btn-manifesto text-decoration-none" aria-label="Close login form and return to roadmap">
<i class="bi bi-x-circle" aria-hidden="true"></i>
<span>Close</span>
</a>
</div>
<p class="text-center mt-3 mb-0">
<a href="/roadmap/reset-password.html" class="text-decoration-underline link-light">Forgot password? Reset it</a>
</p>
</form>
<div id="auth-status" class="alert mt-3" hidden></div>
<div class="alert alert-warning mt-4 mb-0">
<strong>TODO:</strong> Connect this form to remote authentication and roadmap cloud progress API.
</div>
</div>
</section>
<footer class="footer copyright">
<p class="x-small text-secondary mb-0">© 2026 Sage-Code Laboratory</p>
</footer>
</div>
<script src="/assets/js/supabase-config.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@supabase/supabase-js@2"></script>
<script src="/assets/js/supabase-client.js"></script>
<script src="/assets/js/roadmap-state.js"></script>
<script src="/assets/js/roadmap-auth.js"></script>
<script src="/assets/js/sage.js"></script>
</body>
</html>