takahe/templates/identity/create.html

26 lines
939 B
HTML
Raw Normal View History

{% extends "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. They can also be shared among multiple
users, so you can use them for company or project accounts.
</p>
2022-11-13 23:14:38 +00:00
{% 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 %}