diff options
author | Andrew Godwin | 2022-11-05 14:17:27 -0600 |
---|---|---|
committer | Andrew Godwin | 2022-11-05 14:17:27 -0600 |
commit | d77dcf62b4005a0f36ef2fa7ba6d3651d2ef38d7 (patch) | |
tree | dd356a933b8179a22e5da6e938acd96a175ac0d6 /templates/identity/create.html | |
download | takahe-d77dcf62b4005a0f36ef2fa7ba6d3651d2ef38d7.tar.gz takahe-d77dcf62b4005a0f36ef2fa7ba6d3651d2ef38d7.tar.bz2 takahe-d77dcf62b4005a0f36ef2fa7ba6d3651d2ef38d7.zip |
Initial commit (users and statuses)
Diffstat (limited to 'templates/identity/create.html')
-rw-r--r-- | templates/identity/create.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/templates/identity/create.html b/templates/identity/create.html new file mode 100644 index 0000000..cbf0fb2 --- /dev/null +++ b/templates/identity/create.html @@ -0,0 +1,12 @@ +{% 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 %} |