19 lines
565 B
PHP
19 lines
565 B
PHP
<?php
|
|
if($_SERVER['HTTP_X_FORWARDED_PROTO'] !== 'https') {
|
|
header('Location: https://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']);
|
|
die();
|
|
}
|
|
?>
|
|
<html>
|
|
<head>
|
|
<meta name="viewport" width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0>
|
|
<style> body {padding: 0; margin: 0;} </style>
|
|
<script src="https://cdn.jsdelivr.net/npm/p5@1.4.0/lib/p5.min.js"></script>
|
|
<script src="/scripts/sketch.js"></script>
|
|
<script src="/scripts/cells.js"></script>
|
|
<title>Maze Generator</title>
|
|
</head>
|
|
<body>
|
|
</body>
|
|
</html>
|