takahe/templates/identity/create.html

23 lines
856 B
HTML
Raw Normal View History

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