55 lines
1.1 KiB
PHP
55 lines
1.1 KiB
PHP
<?php
|
|
if (! $error_env_check){
|
|
header("Location: " . ROOT_URL );
|
|
}
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Error Environment</title>
|
|
<style>
|
|
html{font-size: 20px; font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif}
|
|
*{ margin:0; padding:0;}
|
|
body{
|
|
width:100vw;
|
|
height:100vh; display:flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
background-color: #f8d5d5;
|
|
}
|
|
.container{
|
|
text-align: center;
|
|
background-color: #e6e6e6;
|
|
padding:100pt;
|
|
border: 4px solid #2b2b2b;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.err_env_result{
|
|
color:red;
|
|
margin:6px;
|
|
font-size: 30px;
|
|
}
|
|
|
|
.err_env_result > span{
|
|
font-weight: 600;
|
|
}
|
|
|
|
.err_env_help{
|
|
color: #880000;
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<?php
|
|
error_env('result');
|
|
error_env('help');
|
|
?>
|
|
</div>
|
|
</body>
|
|
</html>
|