41 lines
1.0 KiB
HTML
41 lines
1.0 KiB
HTML
|
<!DOCTYPE html>
|
|||
|
<html lang="la">
|
|||
|
<head>
|
|||
|
<meta charset="UTF-8">
|
|||
|
<title>Lingua Latina – Quattuor coniugationes verborum</title>
|
|||
|
</head>
|
|||
|
<body>
|
|||
|
<h2>Quod coniugatio?</h2>
|
|||
|
<form method="POST">
|
|||
|
<p>{{dictionarium}}</p>
|
|||
|
<!-- <input type="radio" id="con1" name="asnwer" value="1">
|
|||
|
<label for="con1">Prima</label>
|
|||
|
<input type="radio" id="con2" name="asnwer" value="2">
|
|||
|
<label for="con2">Secunda</label>
|
|||
|
<input type="radio" id="con3" name="asnwer" value="3">
|
|||
|
<label for="con3">Tertia</label>
|
|||
|
<input type="radio" id="con4" name="asnwer" value="4">
|
|||
|
<label for="con4">Quarta</label> -->
|
|||
|
<!-- <input type="submit"> -->
|
|||
|
{{form.word}}
|
|||
|
{{form.csrf_token}}
|
|||
|
{% for subfield in form.radio %}
|
|||
|
<tr>
|
|||
|
<td>{{ subfield }}</td>
|
|||
|
<td>{{ subfield.label }}</td>
|
|||
|
</tr>
|
|||
|
{% endfor %}
|
|||
|
{{form.submit}}
|
|||
|
|
|||
|
{%if success %}
|
|||
|
<br>Correct!<br>
|
|||
|
{{form.next_word}}
|
|||
|
{%endif%}
|
|||
|
{% if fail %}
|
|||
|
<br>Wrong!<br>
|
|||
|
{% endif %}
|
|||
|
|
|||
|
<!-- <label for="ego">Ego</label><br>
|
|||
|
<input type="text" id="ego" name="ego"><br>
|
|||
|
--></body>
|
|||
|
</html>
|