takahe/templates/identity/create.html

13 lines
265 B
HTML
Raw Normal View History

2022-11-05 20:17:27 +00:00
{% 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 %}