mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-22 23:30:59 +00:00
13 lines
314 B
HTML
13 lines
314 B
HTML
{% 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 %}
|