{% extends 'layout.html' %} {% from 'bootstrap5/form.html' import render_field %} {% block app_content %}

Hi {{current_user.first_name}}!

{% if current_user.waitlisted %}

You're currently waitlisted. If space opens up, we'll let you know!

{% else %}

You are fully registered! We look forward to seeing you!

{% endif %}

Let us know if you have any questions by sending them to hack@wpi.edu

{{ form.csrf_token() }}

Optional Info

{{ form.shirt_size(class="form-control", selected=current_user.shirt_size) }} {{ form.shirt_size.label() }}
{{ form.accomodations(class="form-control") }} {{ form.accomodations.label() }}
{{ render_field(form.submit) }}

{{ resform.csrf_token() }}

If you'd like, add your resume to send to sponsors...

{{ resform.resume(class="form-control") }}
{{ render_field(resform.submit) }}
{% endblock %}