summaryrefslogtreecommitdiff
path: root/gstudio/templates/registration/registration_form.html
blob: a640aa6f593200d89730e1794fc95b5d17c92ea0 (plain)
1
2
3
4
5
6
7
8
9
10
{% extends "base.html" %}
{% load i18n %}

{% block content %}
<form method="post" action=".">
{% csrf_token %}  {{ form.as_p }}

  <input type="submit" value="{% trans 'Submit' %}" />
</form>
{% endblock %}