regluit/frontend/templates/profiles/create_profile.html

15 lines
337 B
HTML
Raw Normal View History

{% extends "base.html" %}
{% block title %}Create Profile{% endblock %}
{% block content %}
<div id="registration">
<h1>Create a new profile for {{ user }} </h1>
2012-03-09 18:15:30 +00:00
<form method="POST" action="#">
{% csrf_token %}
{{ form }}
<input type="submit" name="submit" value="Save" id="submit">
</form>
</div>
{% endblock content %}