Files
caminus/templates/profiles/register.html
2012-02-19 22:30:10 -05:00

13 lines
275 B
HTML

{% extends "base.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%}