2022-11-05 13:17:27 -07:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% load crispy_forms_tags %}
|
|
|
|
|
|
|
|
{% block title %}Create Identity{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
2022-11-12 22:21:52 -08:00
|
|
|
{% include "identity/_identity_menu.html" %}
|
2022-11-05 13:17:27 -07:00
|
|
|
<section class="modal identities">
|
|
|
|
<h1>Create Identity</h1>
|
|
|
|
{% crispy form form.helper %}
|
|
|
|
</section>
|
|
|
|
{% endblock %}
|