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/registration_token.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/registration_token.html')
-rw-r--r-- | synapse/res/templates/registration_token.html | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/synapse/res/templates/registration_token.html b/synapse/res/templates/registration_token.html index ee4e5295e7..179e994279 100644 --- a/synapse/res/templates/registration_token.html +++ b/synapse/res/templates/registration_token.html @@ -1,12 +1,8 @@ {% extends "_base.html" %} {% block title %}Authentication{% endblock %} -{% block header %} -<link rel="stylesheet" href="/_matrix/static/client/register/style.css"> -{% endblock %} - {% block body %} -<form id="registrationForm" method="post" action="{{ myurl }}"> +<form method="post" action="{{ myurl }}"> <div> {% if error is defined %} <p class="error"><strong>Error: {{ error }}</strong></p> |