You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
893 B
26 lines
893 B
<h1>▶ Quiz ◀</h1>
|
|
<div class="quiz">
|
|
<h2> {{ question.question }} </h2>
|
|
<a id="timer"> 10 seconds left .. </a>
|
|
|
|
<form id="quizForm" method="POST" >
|
|
<div class="answers">
|
|
<button class="answer" name="answera" value="A-{{ id }}">
|
|
{{ question.answera }}
|
|
</button>
|
|
<button class="answer" name="answerb" value="B-{{ id }}">
|
|
{{ question.answerb }}
|
|
</button>
|
|
<button class="answer" name="answerc" value="C-{{ id }}">
|
|
{{ question.answerc }}
|
|
</button>
|
|
<button class="answer" name="answerd" value="D-{{ id }}">
|
|
{{ question.answerd }}
|
|
</button>
|
|
</div>
|
|
<input type="hidden" name="action" value="canswer">
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html>
|