2011-10-03 16:36:04 +00:00
|
|
|
{% 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="#">
|
2011-10-03 16:36:04 +00:00
|
|
|
{% csrf_token %}
|
|
|
|
{{ form }}
|
|
|
|
<input type="submit" name="submit" value="Save" id="submit">
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
{% endblock content %}
|