{% extends team.id+'/base.html' %} {% block title %}Application Accepted{% endblock %} {% block description %}A confirmation page that welcomes new members after successfully joining the Turtle School academy. It displays a success message and, if the membership type includes payment, shows a detailed subscription confirmation with fees, billing information, and payment breakdown.{% endblock %} request_form {% block content %}

APPLICATION ACCEPTED!

Your membership at {{team.name}} has been successfully activated.

{% if request_form.type == '2' %}
Payment confirmed

Thank you for your subscription, {{request_form.name}}.

We have successfully processed your membership fee. Within the next 2-3 business days, you will see the charge reflected on your card under the description "{{team.name.replace(" ","-").replace(".","")}}-MEMBERSHIP-{{ range(300,700) | random }}"

Annual Fee 30 €
Administrative Management (Capsule Corp) 0 €

TOTAL 30 €

Your membership card

{% set season=team["season"] %} {% include team.id+'/includes/_adult_card.html' %} {% else %} {% include team.id+'/includes/_young_card.html' %} {% endif %}

WHAT WOULD YOU LIKE TO DO NOW?

{% endblock %}