2020-01-12 15:25:31 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
|
|
|
<html>
|
|
|
|
|
|
|
|
<head>
|
|
|
|
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="theme-color" content="#c50e1f">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
|
|
|
<link href="style.css" rel="stylesheet" type="text/css">
|
|
|
|
|
|
|
|
<title>FS Quiz tool</title>
|
|
|
|
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<header>
|
|
|
|
|
|
|
|
<h1>FS Czech Quiz Tool</h1>
|
|
|
|
|
|
|
|
Only works in modern browsers.
|
|
|
|
|
|
|
|
</header>
|
|
|
|
|
|
|
|
<main>
|
|
|
|
|
2020-01-14 01:22:54 +01:00
|
|
|
<div id="spreadsheet" class="view">
|
|
|
|
<form>
|
2020-01-12 15:25:31 +01:00
|
|
|
|
2020-01-14 01:22:54 +01:00
|
|
|
Title:<br>
|
|
|
|
<input type="text" id="titleField" required>
|
|
|
|
Paste your questions from a spreadsheet here:<br>
|
|
|
|
<textarea rows="20" id="questions" required></textarea>
|
|
|
|
<br>
|
2020-01-12 15:25:31 +01:00
|
|
|
|
2020-01-14 01:22:54 +01:00
|
|
|
<input type="button" value="Create Quiz" onclick="createQuiz()">
|
2020-01-12 15:25:31 +01:00
|
|
|
|
2020-01-14 01:22:54 +01:00
|
|
|
</form>
|
|
|
|
</div>
|
2020-01-12 15:25:31 +01:00
|
|
|
|
|
|
|
<div id="prescreen" class="view">
|
|
|
|
<h1></h1>
|
|
|
|
<input type="button" value="Start" onclick="startQuiz()" class="center">
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="quiz" class="view">
|
|
|
|
<h1></h1>
|
|
|
|
<div id="sharing">
|
|
|
|
<input type="button" value="Share This Quiz" onclick="shareQuiz()" class="center">
|
|
|
|
<br><a id="shareLink"></a><br>
|
|
|
|
</div>
|
|
|
|
<form>
|
|
|
|
</form>
|
|
|
|
<input type="button" value="Submit" onclick="submitQuiz()" style="background: #008029" id="quizSubmitButton" disabled>
|
|
|
|
<input type="button" value="Abort" onclick="abortQuiz()">
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="postscreen" class="view">
|
|
|
|
<h1></h1>
|
|
|
|
<input type="button" value="Restart" onclick="startQuiz()" class="center">
|
|
|
|
<input type="button" value="Create New Quiz" onclick="changeView('spreadsheet')" class="center">
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</main>
|
|
|
|
|
2020-01-14 01:22:54 +01:00
|
|
|
<footer>
|
|
|
|
© 2020 Oskar / FaSTTUBe
|
|
|
|
· GPLv3
|
|
|
|
· Code & feedback: <a href="https://git.fasttube.de/FaSTTUBe/fs-quiz-tool">git</a>
|
|
|
|
· <span id="meme"></span>
|
|
|
|
</footer>
|
2020-01-12 15:25:31 +01:00
|
|
|
|
|
|
|
<script src="main.js"></script>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|