feat: add installer, ranks/groups enhancements, and founder protections

This commit is contained in:
Micha
2026-01-18 15:52:53 +01:00
parent 24c16ed0dd
commit 073c81012b
43 changed files with 6176 additions and 4039 deletions

View File

@@ -0,0 +1,55 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>speedBB Installed</title>
<style>
:root {
color-scheme: dark;
font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
background: #0b0f17;
color: #e6e8eb;
}
body {
margin: 0;
padding: 2rem 1rem;
display: flex;
justify-content: center;
}
.card {
width: 100%;
max-width: 560px;
background: rgba(18, 23, 33, 0.95);
border: 1px solid rgba(255, 255, 255, 0.08);
border-radius: 16px;
padding: 2rem;
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
text-align: center;
}
h1 {
margin: 0 0 0.5rem;
}
p {
margin: 0 0 1.5rem;
color: #9aa4b2;
}
a {
display: inline-flex;
padding: 0.7rem 1.5rem;
border-radius: 12px;
background: #ff8a3d;
color: #1a1a1a;
font-weight: 700;
text-decoration: none;
}
</style>
</head>
<body>
<div class="card">
<h1>Installation complete</h1>
<p>Your forum is ready. You can now log in with the founder account.</p>
<a href="/">Go to forum</a>
</div>
</body>
</html>