takahe/templates/admin/domain_create.html

42 wiersze
1.6 KiB
HTML
Czysty Zwykły widok Historia

2022-11-18 00:43:00 +00:00
{% extends "settings/base.html" %}
2022-11-17 04:12:28 +00:00
{% block title %}Add Domain - Admin{% endblock %}
2022-11-17 04:12:28 +00:00
{% block content %}
<form action="." method="POST">
<h1>Add A Domain</h1>
<p>
Use this form to add a domain that your users can create identities
on.
</p>
<p>
Takahē supports multiple domains per server, but note that when
identities are created they are <b>fixed to their chosen domain</b>,
and you will <b>not be able to delete a domain with identities on it</b>.
</p>
<p>
If you will be serving Takahē on the domain you choose, you can leave
the "service domain" field blank. If you would like to let users create
accounts on a domain serving something else, you must pick a unique
"service domain" that pairs up to your chosen domain name, make sure
Takahē is served on that, and add redirects
for <tt>/.well-known/webfinger</tt>, <tt>/.well-known/host-meta</tt>
and <tt>/.well-known/nodeinfo</tt> from the main domain to the
service domain.
</p>
{% csrf_token %}
2022-11-18 00:43:00 +00:00
<fieldset>
<legend>Domain Details</legend>
{% include "forms/_field.html" with field=form.domain %}
{% include "forms/_field.html" with field=form.service_domain %}
</fieldset>
<fieldset>
<legend>Access Control</legend>
{% include "forms/_field.html" with field=form.public %}
</fieldset>
2022-11-17 04:12:28 +00:00
<div class="buttons">
2022-11-18 00:43:00 +00:00
<button>Create</button>
2022-11-17 04:12:28 +00:00
</div>
</form>
{% endblock %}