-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path404.php
More file actions
43 lines (33 loc) · 1.25 KB
/
Copy path404.php
File metadata and controls
43 lines (33 loc) · 1.25 KB
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
34
35
36
37
38
39
40
41
42
43
<?php
require_once $_SERVER['DOCUMENT_ROOT'] . '/includes/lang.php';
?>
<?php include "includes/header.php"; ?>
<script>document.body.classList.add('error-layout');</script>
<main class="error-page">
<section class="error-hero-card">
<div class="error-bubbles-bg">
<svg width="100%" height="100%">
<circle cx="18%" cy="22%" r="42" fill="#65e6ce33"/>
<circle cx="85%" cy="30%" r="70" fill="#a7c8fd22"/>
<circle cx="55%" cy="75%" r="48" fill="#7c41ee22"/>
<circle cx="92%" cy="82%" r="28" fill="#60e9cb22"/>
</svg>
</div>
<div class="error-hero-content">
<span class="error-code"><?= $t['error_404_code'] ?></span>
<h1><?= $t['error_404_title'] ?></h1>
<p>
<?= nl2br($t['error_404_desc']) ?>
</p>
<div class="error-actions">
<a href="/" class="astra-btn main">
<?= $t['error_404_home'] ?>
</a>
<a href="/support" class="astra-btn outline">
<?= $t['error_404_support'] ?>
</a>
</div>
</div>
</section>
</main>
<?php include "includes/footer.php"; ?>