imgpaste/index.php

27 lines
552 B
PHP

<?php
if(is_file('config.php')) {
include('config.php');
} else {
include('config.dist.php');
}
include('cleanup.php');
?>
<!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="themes/<?php echo $theme; ?>/style.css">
</head>
<body>
<div id="wrapper">
<div id="dropzone" class="inactive">
<p><?php echo $text; ?></p>
</div>
</div>
<script src="script.js"></script>
</body>
</html>