56 lines
1.5 KiB
PHP
56 lines
1.5 KiB
PHP
<!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>
|