diff options
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 %} |