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

Profile


Personal information

{% csrf_token %} {{ formInfo|crispy }}
{% if participant.agreed_at and not participant.withdrawn_at and not participant.external_id %} {% else %}

You cannot update this information

{% endif %}

Password information

{% csrf_token %} {{ formPassword|crispy }}
{% if participant.agreed_at and not participant.withdrawn_at and not participant.external_id %} {% else %}

You cannot update this information

{% endif %}


Informed Consent Agreement

{% if participant.withdrawn_at %}
You withdrawn your consent on the {{ participant.withdrawn_at }} No further information will be collected. {% elif participant.agreed_at %}

You gave us your consent on {{ participant.agreed_at|date:"F d, Y" }} at {{ participant.agreed_at|time:"H:i" }}.

{% else %}

You did not give us consent to use your information.

{% endif %}

You can review the agreement by clicking here.

{% endblock %}