SpreadQuiz/default_frame.php
2024-03-06 20:29:22 +01:00

43 lines
897 B
PHP

<?php
require_once "globals.php";
require_once "autologin.php";
$user_data = get_autologin_user_data();
if (!get_autologin_state()) {
exit();
}
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>SpreadQuiz</title>
<script src="js/req.js"></script>
<script src="js/o.js"></script>
<script src="js/common.js"></script>
<script src="js/spreadquiz.js"></script>
<script src="js/default_frame.js"></script>
<link rel="stylesheet" href="style/spreadquiz.css">
</head>
<body>
<section id="game_list_panel">
</section>
<section class="window" shown="false" id="results_window">
<section class="window-inner">
<section id="results_overview_display">
</section>
<input type="button" value="Bezárás" onclick="hide('results_window')">
</section>
</section>
<script>
list_available_games();
</script>
</body>
</html>