This repository has been archived on 2023-09-24. You can view files and clone it, but cannot push or open issues or pull requests.
takahe/templates/identity/create.html

23 lines
856 B
HTML
Raw Normal View History

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