-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
executable file
·33 lines (32 loc) · 850 Bytes
/
index.php
File metadata and controls
executable file
·33 lines (32 loc) · 850 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Rolling Soft Reserve Manager</title>
<link rel="stylesheet" href="style.css?v=<?= time(); ?>">
</head>
<body>
<header>
<h1>Rolling Soft Reserve Manager</h1>
<nav>
<a href="index.php">Home</a>
<a href="index.php?id=help">Help</a>
</nav>
</header>
<main>
<?php
$id = $_GET['id'] ?? '';
switch($id) {
default:
include('home.php');
break;
case "help": include('help.html'); break;
}
?>
</main>
<footer>
Rolling Soft Reserve Manager by <a href="https://www.youtube.com/watch?v=Qm9bUYVx8aI" target="_blank">Blokin</a>.<br>
Questions? Problems? Suggestions? Come join us on <a href="https://discord.gg/bqGPDKvYbe" target="_blank">Discord</a>!
</footer>
</body>
</html>