-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
80 lines (74 loc) · 2.75 KB
/
index.html
File metadata and controls
80 lines (74 loc) · 2.75 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
79
80
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
<title>Onboarding Tracker</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@400;500;600;700&family=Space+Mono:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/css/styles.css">
<link rel="stylesheet" href="/css/variables.css">
<link rel="stylesheet" href="/css/base.css">
<link rel="stylesheet" href="/css/components.css">
<link rel="stylesheet" href="/css/animations.css">
<link rel="stylesheet" href="/css/login.css">
<link rel="stylesheet" href="/css/hacker-console.css">
<script type="module" src="/js/app-login.js"></script>
</head>
<body class="login-page">
<div class="orb orb-1"></div>
<div class="orb orb-2"></div>
<div class="orb orb-3"></div>
<div class="grid-overlay"></div>
<div class="login-card" x-data="loginForm">
<div class="brand">
<div class="brand-logo">
<div class="brand-icon" id="brand-icon">OT</div>
<span class="brand-name" id="brand-name">Company</span>
</div>
<p class="brand-tagline">Onboarding Tracker</p>
</div>
<div class="error-message" x-show="error" x-cloak x-transition>
<svg class="error-icon" fill="none" stroke="#ef4444" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8v4m0 4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"/>
</svg>
<span class="error-text" x-text="error"></span>
</div>
<form id="loginForm" @submit.prevent="handleSubmit">
<div class="form-group">
<label class="form-label" for="login-email">Email Address</label>
<input
type="email"
id="login-email"
class="form-input"
placeholder="name@company.com"
x-model="email"
required
:disabled="loading"
>
</div>
<div class="form-group">
<label class="form-label" for="login-password">Password</label>
<input
type="password"
id="login-password"
class="form-input"
placeholder="Enter your password"
x-model="password"
required
:disabled="loading"
>
</div>
<button type="submit" class="submit-btn" :disabled="loading">
<span x-show="loading" class="spinner"></span>
<span x-text="buttonText"></span>
</button>
</form>
<div class="login-footer">
Mentor Access Only · <span>v1.0</span>
</div>
</div>
</body>
</html>