summaryrefslogtreecommitdiff
path: root/public/404.php
blob: 5646c46566ad3de12d9a883d03037c17c82710e7 (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
<?php
http_response_code(404);
?>
<html>

<head>
    <title>Not found - alright.party</title>
    <link rel="stylesheet" href="/static/style.css">
</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>