mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-06 23:49:33 +00:00
19 lines
628 B
HTML
19 lines
628 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Create Identity{% endblock %}
|
|
|
|
{% block content %}
|
|
{% include "identity/_identity_menu.html" %}
|
|
<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>
|
|
{% endblock %}
|