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

{% load crispy_forms_tags %}

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

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