takahe/templates/identity/create.html

20 lines
628 B
HTML
Raw Normal View History

2022-11-05 20:17:27 +00:00
{% extends "base.html" %}
{% block title %}Create Identity{% endblock %}
{% block content %}
2022-11-13 06:21:52 +00:00
{% include "identity/_identity_menu.html" %}
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 %}
{% for field in form %}
{% include "forms/_field.html" %}
{% endfor %}
<div class="buttons">
<button>Create</button>
</div>
</form>
2022-11-05 20:17:27 +00:00
{% endblock %}