forked from Nixius/authelia
108 lines
3.8 KiB
HTML
108 lines
3.8 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 {
|
|
--page: #eff8f8;
|
|
--surface: #ffffff;
|
|
--navy: #172f43;
|
|
--border: #d8e7e5;
|
|
--text: #14202a;
|
|
--muted: #5c6f77;
|
|
--accent: #75d46b;
|
|
--accent-hover: #5fbd55;
|
|
--green: #238b4b;
|
|
}
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
|
|
background:
|
|
radial-gradient(circle at 18% 12%, rgba(117, 212, 107, 0.18), transparent 28rem),
|
|
radial-gradient(circle at 82% 4%, rgba(39, 111, 148, 0.16), transparent 26rem),
|
|
linear-gradient(180deg, #e7f5f5 0%, var(--page) 42%, #f8fbf8 100%);
|
|
color: var(--text);
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 2rem;
|
|
}
|
|
.container { max-width: 520px; width: 100%; }
|
|
.logo {
|
|
display: inline-block;
|
|
background: var(--navy);
|
|
color: #fff;
|
|
border-radius: 999px;
|
|
padding: 0.55rem 0.9rem;
|
|
font-size: 0.95rem;
|
|
font-weight: 800;
|
|
letter-spacing: -0.03em;
|
|
margin-bottom: 1.25rem;
|
|
box-shadow: 0 1rem 2.5rem rgba(23, 47, 67, 0.16);
|
|
}
|
|
.card {
|
|
background: rgba(255,255,255,0.94);
|
|
border: 1px solid var(--border);
|
|
border-radius: 24px;
|
|
box-shadow: 0 1.25rem 3rem rgba(23, 47, 67, 0.08);
|
|
padding: 2rem;
|
|
}
|
|
.card h2 { color: var(--navy); font-size: 1.6rem; font-weight: 850; letter-spacing: -0.04em; 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; }
|
|
.resend { margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--border); }
|
|
.resend p { margin-bottom: 0.5rem; font-size: 0.9rem; }
|
|
.resend .btn-outline {
|
|
background: transparent;
|
|
border: 1px solid var(--accent);
|
|
color: var(--accent);
|
|
padding: 0.5rem 1rem;
|
|
font-size: 0.9rem;
|
|
border-radius: 6px;
|
|
cursor: pointer;
|
|
transition: opacity 0.2s;
|
|
}
|
|
.resend .btn-outline:hover:not(:disabled) { opacity: 0.9; }
|
|
.resend .btn-outline:disabled { opacity: 0.5; cursor: not-allowed; }
|
|
.resend .msg { font-size: 0.85rem; margin-top: 0.5rem; }
|
|
.resend .msg.success { color: var(--green, #22c55e); }
|
|
.resend .msg.error { color: #ef4444; }
|
|
.dashboard-cta { margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--border); }
|
|
.dashboard-cta .muted { color: var(--muted); font-size: 0.9rem; margin-bottom: 0.5rem; }
|
|
.dashboard-cta .btn-primary {
|
|
display: inline-block;
|
|
background: var(--accent);
|
|
color: #102414;
|
|
text-decoration: none;
|
|
padding: 0.6rem 1.25rem;
|
|
font-size: 0.95rem;
|
|
font-weight: 600;
|
|
border-radius: 999px;
|
|
transition: background 0.2s;
|
|
}
|
|
.dashboard-cta .btn-primary:hover { background: var(--accent-hover); }
|
|
</style>
|
|
{{template "analytics"}}
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="logo">a250.ca</div>
|
|
<div class="card">
|
|
<h2>You're all set</h2>
|
|
<p>Your purchase is complete and your workspace is being prepared.</p>
|
|
<p>Sign in with your social account to open the dashboard and manage your stack.</p>
|
|
<div class="dashboard-cta">
|
|
<p class="muted">Ready to continue?</p>
|
|
<a href="{{.AppURL}}/dashboard" class="btn-primary">Go to Dashboard</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|