summaryrefslogtreecommitdiffstats
path: root/templates/identity
diff options
context:
space:
mode:
authorAndrew Godwin2022-11-13 16:14:38 -0700
committerAndrew Godwin2022-11-13 16:15:14 -0700
commit34b24a0dcb044cb755e201ad1a83253d0690e78e (patch)
tree51e6842d9e1392fafcd617cf4de0fa7e28397c87 /templates/identity
parent5a8b6bb3d022a532562ad5fa6d629cfc48c51b46 (diff)
downloadtakahe-34b24a0dcb044cb755e201ad1a83253d0690e78e.tar.gz
takahe-34b24a0dcb044cb755e201ad1a83253d0690e78e.tar.bz2
takahe-34b24a0dcb044cb755e201ad1a83253d0690e78e.zip
More UI!
Diffstat (limited to 'templates/identity')
-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 %}