summaryrefslogtreecommitdiff
path: root/app/emergency/index.php
blob: d8cfedf3e1afb991a65f336aa63ae872b9fc1225 (plain)
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
<?php require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/session.php"; global $isLoggedIn; if (!$isLoggedIn) header("Location: /-/login") and die(); ?>

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Emergency</title>
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet">
    <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script>
    <style>
        body {
            background-color: black !important;
            color: white;
        }

        .alert, .alert .btn, .alert code {
            filter: hue-rotate(180deg);
        }

        .alert {
            filter: invert(1) hue-rotate(180deg);
        }
    </style>
</head>
<body>
    <div class="container">
        <br>
        <?php require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/emergency.php"; ?>
    </div>
</body>
</html>