14 lines
181 B
HTML
14 lines
181 B
HTML
{% extends "stripped_base.html" %}
|
|
|
|
{% block content %}
|
|
|
|
<form method="post">
|
|
{% csrf_token %} {{form.as_p}} <input type="submit" value="Sign up"></form>
|
|
|
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|