51 lines
1.1 KiB
PHP
51 lines
1.1 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>Site Data Gate</title>
|
|
<meta name="description" content="API GATE" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link rel="shortcut icon" type="image/png" href="/favicon.ico" />
|
|
|
|
<!-- STYLES -->
|
|
|
|
<style>
|
|
html,
|
|
body {
|
|
text-rendering: optimizeLegibility;
|
|
|
|
background-image: url(<?=$home_background?>);
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
|
|
}
|
|
.page_label {
|
|
font-size: 40px;
|
|
color: white;
|
|
position: absolute;
|
|
}
|
|
#footer {
|
|
bottom: 0%;
|
|
position: fixed;
|
|
height: 50px;
|
|
background-color: #1d1e1e;
|
|
color: white;
|
|
.page_label {
|
|
font-size: 40px;
|
|
color: white;
|
|
position: absolute;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="footer" id="footer">
|
|
<div class="page_label">
|
|
<?php echo ENV_ID ?>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|