mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-06 23:49:33 +00:00
12 lines
265 B
HTML
12 lines
265 B
HTML
{% 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 %}
|