summaryrefslogtreecommitdiffstats
path: root/templates/identity/create.html
blob: fbdd66c1783ad1c9c13786116ce854e2891a66e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{% extends "identity/base.html" %}

{% block title %}Create Identity{% endblock %}

{% block content %}
    <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 %}
        <fieldset>
            <legend>Identity Details</legend>
            {% include "forms/_field.html" with field=form.username %}
            {% include "forms/_field.html" with field=form.domain %}
            {% include "forms/_field.html" with field=form.name %}
        </fieldset>
        <div class="buttons">
            <button>Create</button>
        </div>
    </form>
{% endblock %}