{% extends 'base.html' %} {% from 'bootstrap5/form.html' import render_form %} {% block content %}

Hi {{ current_user.first_name }}!


{% if current_user.waitlisted %}

You're currently waitlisted, keep checking your email to see if space opens up!

{% else %}

Your registration is confirmed! We're looking forward to seeing you at GoatHacks!

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


Make sure you join the Discord and add your shirt size as well as any needed accomodations below

{{ render_form(form) }}
{{ resform.csrf_token }}

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

{% endif %}
{% endblock %}