SpreadQuiz/testground.php
2024-03-05 16:07:47 +01:00

31 lines
603 B
PHP

<?php
require_once "globals.php";
require_once "autologin.php";
$user_data = get_autologin_user_data();
if (!get_autologin_state() || !isset($_REQUEST["testid"])) {
exit();
}
$testid = $_REQUEST["testid"];
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>SpreadQuiz</title>
<script src="js/spreadquiz.js"></script>
<script src="js/req.js"></script>
<script src="js/o.js"></script>
<script src="js/testground.js"></script>
<link rel="stylesheet" href="style/spreadquiz.css">
</head>
<body>
<section id="test_display">
</section>
</body>
</html>