firts commit
This commit is contained in:
50
pages/env-error.php
Normal file
50
pages/env-error.php
Normal file
@@ -0,0 +1,50 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user