This repository has been archived on 2023-09-24. You can view files and clone it, but cannot push or open issues or pull requests.
takahe/templates/identity/create.html

14 lines
314 B
HTML
Raw Normal View History

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