2021-11-17 11:26:13 +03:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @var string $heading
|
|
|
|
* @var string $message
|
|
|
|
*/
|
|
|
|
?>
|
|
|
|
|
2021-11-09 10:44:37 +03:00
|
|
|
<!doctype html>
|
2021-11-17 11:26:13 +03:00
|
|
|
<html lang="en" style="
|
|
|
|
height: 100%;
|
|
|
|
">
|
2012-11-11 19:47:25 +02:00
|
|
|
<head>
|
2021-11-17 11:26:13 +03:00
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
2023-03-22 12:05:41 +03:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
|
2021-11-17 11:26:13 +03:00
|
|
|
<title>Database Error | Easy!Appointments</title>
|
|
|
|
<style>
|
|
|
|
#error-container {
|
2021-11-17 11:28:04 +03:00
|
|
|
background: #ffffff;
|
2021-11-17 11:26:13 +03:00
|
|
|
min-width: 450px;
|
|
|
|
max-width: 600px;
|
|
|
|
margin: auto;
|
|
|
|
border: 1px solid #D0D0D0;
|
2020-12-09 15:17:45 +03:00
|
|
|
font: 13px/20px normal Helvetica, Arial, sans-serif;
|
|
|
|
color: #4F5155;
|
|
|
|
}
|
|
|
|
|
2021-11-17 11:26:13 +03:00
|
|
|
#error-container a {
|
2020-12-09 15:17:45 +03:00
|
|
|
color: #003399;
|
|
|
|
background-color: transparent;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
2021-11-17 11:26:13 +03:00
|
|
|
#error-container h1 {
|
2020-12-09 15:17:45 +03:00
|
|
|
color: #444;
|
|
|
|
background-color: transparent;
|
|
|
|
border-bottom: 1px solid #D0D0D0;
|
|
|
|
font-size: 19px;
|
|
|
|
font-weight: normal;
|
|
|
|
margin: 0 0 14px 0;
|
2021-11-17 11:26:13 +03:00
|
|
|
padding: 20px;
|
2020-12-09 15:17:45 +03:00
|
|
|
}
|
|
|
|
|
2021-11-17 11:26:13 +03:00
|
|
|
#error-container code {
|
2020-12-09 15:17:45 +03:00
|
|
|
font-family: Consolas, Monaco, Courier New, Courier, monospace;
|
|
|
|
font-size: 12px;
|
|
|
|
background-color: #f9f9f9;
|
|
|
|
border: 1px solid #D0D0D0;
|
|
|
|
color: #002166;
|
|
|
|
display: block;
|
|
|
|
margin: 14px 0 14px 0;
|
2021-11-17 11:26:13 +03:00
|
|
|
padding: 20px;
|
2020-12-09 15:17:45 +03:00
|
|
|
}
|
|
|
|
|
2021-11-17 11:26:13 +03:00
|
|
|
#error-container p {
|
|
|
|
margin: 20px;
|
2020-12-09 15:17:45 +03:00
|
|
|
}
|
|
|
|
</style>
|
2012-11-11 19:47:25 +02:00
|
|
|
</head>
|
2021-11-17 11:26:13 +03:00
|
|
|
<body style="
|
|
|
|
height: 100%;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
display: flex;
|
2021-11-17 11:28:04 +03:00
|
|
|
background: #f5f8fa;
|
2021-11-17 11:26:13 +03:00
|
|
|
">
|
|
|
|
<div id="error-container">
|
|
|
|
<h1>
|
|
|
|
<?= $heading ?>
|
|
|
|
</h1>
|
|
|
|
|
2020-12-09 15:17:45 +03:00
|
|
|
<?= $message ?>
|
2021-11-17 11:26:13 +03:00
|
|
|
|
|
|
|
<p>
|
|
|
|
<small>
|
|
|
|
Powered by
|
|
|
|
<a href="https://easyappointments.org">Easy!Appointments</a>
|
|
|
|
</small>
|
|
|
|
</p>
|
2020-12-09 15:17:45 +03:00
|
|
|
</div>
|
2012-11-11 19:47:25 +02:00
|
|
|
</body>
|
2017-09-14 16:18:20 +03:00
|
|
|
</html>
|