45 lines
1.0 KiB
PHP
45 lines
1.0 KiB
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">
|
|
<meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0'>
|
|
<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">
|
|
<link rel="stylesheet" href="style/spreadquiz_mobile.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>
|