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

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

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