summaryrefslogtreecommitdiff
path: root/public/404.php
blob: 8d36c1247b7299c8870d331755af228336402c17 (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
<?php
include "../src/config.php";
http_response_code(404);
?>
<html>

<head>
    <title>Not found - <?php echo INSTANCE_NAME ?></title>
    <link rel="stylesheet" href="/static/style.css">
    <link rel="shortcut icon" href="/static/favicon.ico" type="image/x-icon">
</head>

<body>
    <div class="container">
        <div class="wrapper center">
            <section class="box center big-gap" style="display: flex;flex-direction:column; padding: 16px;">
                <h1 style="color: red;">404 Not Found</h1>
                <img src="/static/img/404/<?php
                $files = scandir("static/img/404");
                $count = count($files) - 2;
                echo random_int(1, $count);
                ?>.webp">
                <a href=" /">Back to home</a>
            </section>
        </div>
    </div>
</body>

</html>