Files
caminus/templates/profiles/register.html
2012-03-04 14:39:21 -05:00

13 lines
282 B
HTML

{% extends "base_simple.html" %}
{%block title%}Register an Account{%endblock%}
{%block content %}
<form method="POST" action="{%url profiles.views.register %}">
{% csrf_token %}
{{profileForm.as_p}}
{{userForm.as_p}}
<input type="submit" value="Register!"/>
</form>
{%endblock%}