diff options
author | Andrew Godwin | 2022-11-16 21:12:28 -0700 |
---|---|---|
committer | Andrew Godwin | 2022-11-16 21:12:28 -0700 |
commit | 1b52acdb56346d939eb2e26ff449697b52fa7142 (patch) | |
tree | 222e5a3de47db230c392f18ab983abe69eb94c5d /templates/settings/settings_system_domain_create.html | |
parent | 44af0d4c59eed1c3715e9044e75c159cfddf54cc (diff) | |
download | takahe-1b52acdb56346d939eb2e26ff449697b52fa7142.tar.gz takahe-1b52acdb56346d939eb2e26ff449697b52fa7142.tar.bz2 takahe-1b52acdb56346d939eb2e26ff449697b52fa7142.zip |
Domains management pages
Diffstat (limited to 'templates/settings/settings_system_domain_create.html')
-rw-r--r-- | templates/settings/settings_system_domain_create.html | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/templates/settings/settings_system_domain_create.html b/templates/settings/settings_system_domain_create.html new file mode 100644 index 0000000..54d3640 --- /dev/null +++ b/templates/settings/settings_system_domain_create.html @@ -0,0 +1,39 @@ +{% extends "base.html" %} + +{% block title %}Add Domain - System Settings{% endblock %} + +{% block content %} + {% block menu %} + {% include "settings/_settings_system_menu.html" %} + {% endblock %} + <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 %} + {% for field in form %} + {% include "forms/_field.html" %} + {% endfor %} + <div class="buttons"> + <a href="{{ domain.urls.delete }}" class="button delete">Delete</a> + <button>Save</button> + </div> + </form> +{% endblock %} |