{% extends "otree/Base.html" %} {% load i18n %} {% load otree static %} {% block body_main %}

To get started, we need to identify you.
Information on your first and last names and date of birth appears only on the first page to allow us to identify you. They are not recorded among the data collected. Only a 10-digit number is stored.

When you enter the letters of your first and last name, a drop-down menu with different options will appear, in which you can search for your first and last name.

Warning: It is important that you type all letters in order to see your name appear (and possibly that you test the options with and without accent). When you enter only the first few letters, you may not see your name appear.

{% if form.errors %}

The last name, first name, and date of birth you entered do not appear not coincide with our data. Could you please verify this information?

{% endif %}
{% csrf_token %}
First and last name :
{{ form.first_name }}
{{ form.last_name }}
Date of Birth :
{{ form.dob_day }}
{{ form.dob_month }}

{% if form.errors %}
Academy:
{{ form.region }}
Educational establishment :
{{ form.school }}
Discipline taught:
{{ form.subject }}
Which class are you currently logging into the platform with?
(This information will allow us to send you a report on the non-cognitive skills of this particular class)
{{ form.classroom }}

{% endif %}
{% endblock %} {% block internal_styles %} {{ block.super }} {% endblock %} {% block internal_scripts %} {{ block.super }} {% comment %} {% endcomment %} {{ form.media|default:"" }} {% endblock %} {% block styles %} {% endblock %} {% block scripts %} {% endblock %}