-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrejected.html
More file actions
65 lines (64 loc) · 1.88 KB
/
rejected.html
File metadata and controls
65 lines (64 loc) · 1.88 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Request Rejected</title>
<style>
:root {
--bg: #f1f5f9;
--card: #ffffff;
--text: #0f172a;
--muted: #475569;
--accent: #2563eb;
--border: #dbe3ef;
}
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
background: var(--bg);
color: var(--text);
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 24px;
}
.card {
width: 100%;
max-width: 620px;
background: var(--card);
border: 1px solid var(--border);
border-radius: 14px;
padding: 28px;
box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
}
.brand {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 16px;
color: #1e3a8a;
font-weight: 700;
}
.brand img { width: 30px; height: 30px; border-radius: 6px; }
h1 { margin: 0 0 12px; font-size: 24px; }
p { margin: 0 0 10px; color: var(--muted); line-height: 1.55; }
.muted { margin-top: 18px; font-size: 14px; }
a { color: var(--accent); text-decoration: none; font-weight: 600; }
a:hover { text-decoration: underline; }
</style>
</head>
<body>
<div class="card">
<div class="brand"><img src="/static/logo.png" alt="Aidra"> Aidra</div>
<h1>Request rejected</h1>
<p>Your approval request was rejected. Please contact admin.</p>
<p class="muted">
If you believe this is a mistake, please contact support.
<br />
<a href="/?show_role_selection=1">Go back to home</a>
</p>
</div>
</body>
</html>