49 lines
775 B
HTML
49 lines
775 B
HTML
{% load otree %}
|
|
|
|
{% block title %}
|
|
Questionnaire
|
|
{% endblock %}
|
|
|
|
|
|
{% block content %}
|
|
|
|
<div class="card bg-light instructions">
|
|
<div class="card-body">
|
|
|
|
Below, you will find 3 questions to answer.<br>
|
|
|
|
You have 3 minutes to complete them.<br>
|
|
Each correct answer earns you 1 euro.<br>
|
|
Once the time is up, your responses will be submitted automatically.
|
|
<div></div>
|
|
|
|
<br>
|
|
<div class="card bg-light instructions">
|
|
<div class="card-body">
|
|
|
|
|
|
<img src="{% static 'e4c/crt1.png'%}" alt=""/>
|
|
|
|
{% formfield player.crt1%}
|
|
|
|
|
|
<img src="{% static 'e4c/crt2.png'%}" alt=""/>
|
|
{% formfield player.crt2%}
|
|
|
|
<img src="{% static 'e4c/crt3.png'%}" alt=""/>
|
|
|
|
{% formfield player.crt3%}
|
|
|
|
</div></div>
|
|
|
|
|
|
|
|
{% next_button %}
|
|
<br>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{% endblock %} |