{% extends "base.html" %} {% load crispy_forms_tags %} {% block content %}

{{ study.name }}

Participant ID: {{ participant.pseudo_id }}

{% if study.description %}
{{ study.description|linebreaks }}
{% endif %} {% if assigned_packet and start_url and participant.consented %}
Ready to Start

You have been assigned to: {{ participant.assigned_arm.name }}

Collection: {{ assigned_packet.name }}

Your Access Credentials
Keep note of these to reaccess your results later:
CID: {{ participant.cid_user.cid }}  |  Passcode: {{ participant.cid_user.passcode }} {% if participant.email %}
Results can also be accessed via email: {{ participant.email }} {% endif %}
Start
{% elif participant.assigned_arm %}
Assignment Complete

Refreshing to load your credentials...

{% else %}
Participant Intake

Complete this form to be assigned to a study packet. {% if study.collect_demographics %} We collect anonymous demographic data to support analysis. {% endif %}

{% csrf_token %} {{ form|crispy }}
{% endif %}
{% endblock %}