forked from Nixius/authelia
64 lines
2.1 KiB
HTML
64 lines
2.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>a250.ca - Welcome</title>
|
|
<style>
|
|
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
|
|
:root {
|
|
--bg: #0f1117;
|
|
--surface: #1a1d27;
|
|
--border: #2a2d3a;
|
|
--text: #e4e4e7;
|
|
--muted: #a1a1aa;
|
|
--accent: #6366f1;
|
|
--accent-hover: #818cf8;
|
|
}
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
|
|
background: var(--bg);
|
|
color: var(--text);
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 2rem;
|
|
}
|
|
.container { max-width: 480px; width: 100%; }
|
|
.logo { font-size: 2.5rem; font-weight: 800; letter-spacing: -0.04em; margin-bottom: 0.5rem; }
|
|
.card {
|
|
background: var(--surface);
|
|
border: 1px solid var(--border);
|
|
border-radius: 12px;
|
|
padding: 2rem;
|
|
}
|
|
.card h2 { font-size: 1.25rem; font-weight: 600; margin-bottom: 1rem; }
|
|
.card p { color: var(--muted); line-height: 1.6; margin-bottom: 1rem; }
|
|
.card ul { color: var(--muted); line-height: 1.7; margin: 1rem 0; padding-left: 1.25rem; }
|
|
.footer { margin-top: 2rem; color: var(--muted); font-size: 0.8rem; text-align: center; }
|
|
.footer a { color: var(--accent); text-decoration: none; }
|
|
</style>
|
|
{{template "analytics"}}
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="logo">a250.ca</div>
|
|
<div class="card">
|
|
<h2>Check your inbox</h2>
|
|
<p>We've sent a password set email to your address. Use the link in that email to create your password and sign in.</p>
|
|
<p><strong>You'll be required to:</strong></p>
|
|
<ul>
|
|
<li>Set a password</li>
|
|
<li>Enable two-factor authentication or a passkey</li>
|
|
</ul>
|
|
<p>Once you've signed in, you can activate your workspace from the dashboard.</p>
|
|
</div>
|
|
<div class="footer">
|
|
<a href="{{.AppURL}}/dashboard">Go to Dashboard</a>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|