{{ block content }}

Part 1: Your Task

{% if player.treatment == "control" %}

You were not randomly selected by the computer. You have 3 counting exercises to complete.

{% else %}

You were randomly selected by the computer. You have 6 counting exercises to complete.

{% endif %}

1. How many times does the letter t appear in the letter string below?
"afdygtuyftdwubtiskjdfttr"

{{ form.task_1 }}

2. How many times does the letter f appear in the letter string below?
"fdajfuklfdbfjklafjfdkl"

{{ form.task_2 }}

3. How many times does the letter s appear in the letter string below?
"asdhfksjlsakdfjsalkjs"

{{ form.task_3 }}

{% if player.treatment == 'fraud' %}

4. How many times does the letter k appear in the letter string below?
"kjfkdljfkldjfklajfkdljf"

{{ form.task_4 }}

5. How many times does the letter j appear in the letter string below?
"jafjkjfjkjfjkjfjkjfjkfj"

{{ form.task_5 }}

6. How many times does the letter d appear in the letter string below?
"dfkdjfkdlfjdklfjdklfjd"

{{ form.task_6 }}
{% endif %}

{{ endblock }}