2023-03-23 11:15:05 +01:00
|
|
|
<?php
|
|
|
|
if(is_file('config.php')) {
|
|
|
|
include('config.php');
|
|
|
|
} else {
|
|
|
|
include('config.dist.php');
|
|
|
|
}
|
2023-03-23 13:59:41 +01:00
|
|
|
|
|
|
|
include('cleanup.php');
|
2023-03-23 11:15:05 +01:00
|
|
|
?>
|
2023-03-22 23:10:33 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<title><?php echo $title; ?></title>
|
|
|
|
<link rel="stylesheet" href="style.css">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="wrapper">
|
|
|
|
<div id="dropzone" class="nodrop">
|
|
|
|
<p><?php echo $text; ?></p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<script src="script.js"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|