2022-11-18 00:43:00 +00:00
|
|
|
{% extends "identity/base.html" %}
|
2022-11-05 20:17:27 +00:00
|
|
|
|
|
|
|
{% block title %}Create Identity{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
2022-11-13 23:14:38 +00:00
|
|
|
<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 %}
|
2022-11-18 00:43:00 +00:00
|
|
|
<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 %}
|
2022-11-26 01:32:45 +00:00
|
|
|
{% include "forms/_field.html" with field=form.discoverable %}
|
2022-11-18 00:43:00 +00:00
|
|
|
</fieldset>
|
2022-11-13 23:14:38 +00:00
|
|
|
<div class="buttons">
|
|
|
|
<button>Create</button>
|
|
|
|
</div>
|
|
|
|
</form>
|
2022-11-05 20:17:27 +00:00
|
|
|
{% endblock %}
|