mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-06 15:39:38 +00:00
22 lines
856 B
HTML
22 lines
856 B
HTML
{% 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 %}
|