summaryrefslogtreecommitdiffstats
path: root/templates/identity/create.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/identity/create.html')
-rw-r--r--templates/identity/create.html18
1 files changed, 12 insertions, 6 deletions
diff --git a/templates/identity/create.html b/templates/identity/create.html
index 8e78e10..c69b55f 100644
--- a/templates/identity/create.html
+++ b/templates/identity/create.html
@@ -1,13 +1,19 @@
{% 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>
+ <form action="." method="POST">
+ <h1>Create New Identity</h1>
+ <p>You can have multiple identities - they are totally separate, and share
+ nothing apart from your login details. Use them for alternates, projects, and more.</p>
+ {% csrf_token %}
+ {% for field in form %}
+ {% include "forms/_field.html" %}
+ {% endfor %}
+ <div class="buttons">
+ <button>Create</button>
+ </div>
+ </form>
{% endblock %}