regluit/frontend/templates/profiles/create_profile.html

15 lines
337 B
HTML

{% extends "base.html" %}
{% block title %}Create Profile{% endblock %}
{% block content %}
<div id="registration">
<h1>Create a new profile for {{ user }} </h1>
<form method="POST" action="#">
{% csrf_token %}
{{ form }}
<input type="submit" name="submit" value="Save" id="submit">
</form>
</div>
{% endblock content %}