summaryrefslogtreecommitdiffstats
path: root/templates/identity/create.html
blob: cbf0fb2c8dc863d4395457dec73b2760b3de3ffc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{% extends "base.html" %}

{% load crispy_forms_tags %}

{% block title %}Create Identity{% endblock %}

{% block content %}
    <section class="modal identities">
        <h1>Create Identity</h1>
        {% crispy form form.helper %}
    </section>
{% endblock %}