{% extends "_club_base.html" %} {% load i18n lucide ui %} {% block head_title %}{% trans "Link me to my child" %}{% endblock head_title %} {% block main %}

{% lucide "users" size=20 %} {% blocktrans with club=club.name %}Link me to my child at {{ club }}{% endblocktrans %}

{% blocktrans %}If your child already plays here, fill this in and the club will check it against their records. Once they confirm, you'll get an email to set up your login.{% endblocktrans %}

{% csrf_token %} {% for error in form.non_field_errors %}
{{ error }}
{% endfor %}

{% trans "About you" %}

{% if locked_member %}

{% blocktrans with name=locked_member.get_full_name email=locked_member.contact_email %}Submitting as: {{ name }} ({{ email }}){% endblocktrans %}

{% else %}
{% form_field form.parent_first_name %} {% form_field form.parent_last_name %}
{% form_field form.parent_email %} {% endif %}

{% trans "About your child" %}

{% form_field form.child_first_name %} {% form_field form.child_last_name %}
{% form_field form.child_date_of_birth %}
{% endblock main %}