-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmy_error.php
More file actions
49 lines (37 loc) · 1.19 KB
/
my_error.php
File metadata and controls
49 lines (37 loc) · 1.19 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
44
45
46
47
48
49
<?php session_start(); ?>
<!-- Stránka s chybovou hláškou. -->
<!DOCTYPE html>
<html lang="cs">
<?php
require_once 'fragments/head.html';
require_once 'utilities.php';
?>
<body class="<?php echo check_dark_theme('w3-theme-dark', ''); ?>">
<?php
if (isset($_SESSION['user'])) {
require_once 'fragments/menu-user.php';
} else {
require_once 'fragments/menu.php';
}
?>
<div class="w3-main my-container shift-right">
<main class="my-main">
<div class="w3-row w3-padding-64">
<article class="w3-twothird w3-container">
<h2>Error</h2>
<p>Omlouváme se, něco se nepodařilo.</p>
<p>Pokud vás tento error omezuje v používání stránek, kontaktujte prosím webmastera: zdenekotrly@gmail.com</p>
<a class="w3-button w3-border" href="form_management/set_topic.php?topic=none">Zpět na hlavní stránku</a>
</article>
<div class="w3-third w3-container">
<img class="resize-medium" src="images/ferrum_logo.png" alt="Logo Ferrum">
</div>
</div>
</main>
<?php
require_once 'fragments/footer.html';
?>
</div>
<script src="js/sidebar.js"></script>
</body>
</html>