-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdb_error.php
More file actions
49 lines (44 loc) · 2.15 KB
/
db_error.php
File metadata and controls
49 lines (44 loc) · 2.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<?php include('head.php'); ?>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/login.css" rel="stylesheet">
<title>Database Error | EATERIO</title>
</head>
<body class="d-flex flex-column h-100">
<header class="navbar navbar-expand-md navbar-light fixed-top bg-light shadow-sm mb-auto">
<div class="container-fluid mx-4">
<a href="index.php">
<img src="img/LOGO_BLACK.png" width="125" class="me-2" alt="EATERIO Logo">
</a>
<button class="navbar-toggler collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="navbar-collapse collapse" id="navbarCollapse">
<div class="d-flex text-end"></div>
</div>
</div>
</header>
<div class="mt-5"></div>
<div class="container form-signin text-center restricted mt-auto">
<i class="mt-4 bi bi-hdd-network-fill text-danger h1 display-2"></i>
<h3 class="mt-2 mb-3 fw-normal text-bold">Connection Error</h3>
<p class="mb-3 fw-normal text-bold text-wrap">Cannot connect to EATERIO database right now.</p>
<a class="btn btn-danger btn-sm w-50" href="index.php">Try again.</a>
</div>
<footer
class="footer d-flex flex-wrap justify-content-between align-items-center px-5 py-3 mt-auto bg-secondary text-light">
<span class="smaller-font">© 2021 SeriousEater Group<br /><span class="xsmall-font">Paphana Y. Sirada C.
Thanakit L.</span></span>
<ul class="nav justify-content-end list-unstyled d-flex">
<li class="ms-3"><a class="text-light" target="_blank" href="https://github.com/waterthatfrozen/EATERIO"><i
class="bi bi-github"></i></a></li>
</ul>
</footer>
</body>
</html>