summaryrefslogtreecommitdiffstats
path: root/templates/identity/create.html
blob: 8afd1d9d827f229fcd76a3114565878f7f99dfab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{% 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 %}
            {% include "forms/_field.html" with field=form.discoverable %}
        </fieldset>
        <div class="buttons">
            <button>Create</button>
        </div>
    </form>
{% endblock %}