symposion_app/registrasion/templates/profile_form.html

23 lines
364 B
HTML
Raw Normal View History

<!--- Sample template. Move elsewhere once it's ready to go. -->
{% extends "site_base.html" %}
{% block body %}
<h1>Attendee Profile</h1>
<p>Something something fill in your attendee details here!</p>
<form method="post" action="">
{% csrf_token %}
<table>
{{ form }}
</table>
<input type="submit">
</form>
{% endblock %}