blob: 37b5c08f2029b0cc7ad6df9c1d756f2516155fd6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{% extends "base.html" %}
{% block title %}Quit exam {% endblock %}
{% block content %}
<p>Your current answers are saved.</p>
<p> Are you sure you wish to quit the exam?</p>
<form action="{{URL_ROOT}}/exam/complete/" method="post">
{% csrf_token %}
<input type="submit" name="yes" value="Yes!" />
<input type="submit" name="no" value="No!" />
</form>
{% endblock content %}
|