diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2023-04-13 11:36:29 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-13 11:36:29 -0400 |
commit | d751f65e71bef80ec4181e4495c954551ddf33f7 (patch) | |
tree | 31d6526dd18ead73553caa5db623ad6116f0d887 /synapse/res/templates/terms.html | |
parent | Improve robustness when handling a perspective key response by deduplicating ... (diff) | |
download | synapse-d751f65e71bef80ec4181e4495c954551ddf33f7.tar.xz |
Remove registration fallback code. (#15405)
The registration fallback is broken and unspecced. This removes it since there is no plan to spec it. Note that this does not modify the login fallback code.
Diffstat (limited to 'synapse/res/templates/terms.html')
-rw-r--r-- | synapse/res/templates/terms.html | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/synapse/res/templates/terms.html b/synapse/res/templates/terms.html index ffabebdd8b..66c40a7000 100644 --- a/synapse/res/templates/terms.html +++ b/synapse/res/templates/terms.html @@ -2,7 +2,12 @@ {% block title %}Authentication{% endblock %} {% block header %} -<link rel="stylesheet" href="/_matrix/static/client/register/style.css"> +<style type="text/css"> + #registrationForm input { + display: block; + margin: auto; + } +</style> {% endblock %} {% block body %} |