Fix HTML templates missing correct HTML tags (#14448)

1.103.0-whithout-watcha
Erik Johnston 2 years ago committed by GitHub
parent 1eed795fc5
commit 5cb6ad3b87
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      changelog.d/14448.bugfix
  2. 1
      synapse/res/templates/invalid_token.html
  3. 2
      synapse/res/templates/notif_mail.html
  4. 1
      synapse/res/templates/password_reset.html
  5. 1
      synapse/res/templates/password_reset_confirmation.html
  6. 1
      synapse/res/templates/password_reset_failure.html
  7. 1
      synapse/res/templates/password_reset_success.html
  8. 1
      synapse/res/templates/recaptcha.html
  9. 1
      synapse/res/templates/registration.html
  10. 1
      synapse/res/templates/registration_failure.html
  11. 1
      synapse/res/templates/registration_success.html
  12. 1
      synapse/res/templates/registration_token.html
  13. 1
      synapse/res/templates/sso_account_deactivated.html
  14. 1
      synapse/res/templates/sso_auth_account_details.html
  15. 1
      synapse/res/templates/sso_auth_bad_user.html
  16. 1
      synapse/res/templates/sso_auth_confirm.html
  17. 1
      synapse/res/templates/sso_auth_success.html
  18. 1
      synapse/res/templates/sso_error.html
  19. 1
      synapse/res/templates/sso_login_idp_picker.html
  20. 1
      synapse/res/templates/sso_new_user_consent.html
  21. 1
      synapse/res/templates/sso_redirect_confirm.html
  22. 1
      synapse/res/templates/terms.html

@ -0,0 +1 @@
Fix rendering of some HTML templates (including emails). Introduced in v1.71.0.

@ -1,3 +1,4 @@
{% extends "_base.html" %}
{% block title %}Invalid renewal token.{% endblock %}
{% block body %}

@ -1,3 +1,5 @@
{% extends "_base.html" %}
{% block title %}New activity in room{% endblock %}
{% block header %}

@ -1,3 +1,4 @@
{% extends "_base.html" %}
{% block title %}Password reset{% endblock %}
{% block body %}

@ -1,3 +1,4 @@
{% extends "_base.html" %}
{% block title %}Password reset confirmation{% endblock %}
{% block body %}

@ -1,3 +1,4 @@
{% extends "_base.html" %}
{% block title %}Password reset failure{% endblock %}
{% block body %}

@ -1,3 +1,4 @@
{% extends "_base.html" %}
{% block title %}Password reset success{% endblock %}
{% block body %}

@ -1,3 +1,4 @@
{% extends "_base.html" %}
{% block title %}Authentication{% endblock %}
{% block header %}

@ -1,3 +1,4 @@
{% extends "_base.html" %}
{% block title %}Registration{% endblock %}
{% block body %}

@ -1,3 +1,4 @@
{% extends "_base.html" %}
{% block title %}Registration failure{% endblock %}
{% block body %}

@ -1,3 +1,4 @@
{% extends "_base.html" %}
{% block title %}Your email has now been validated{% endblock %}
{% block body %}

@ -1,3 +1,4 @@
{% extends "_base.html" %}
{% block title %}Authentication{% endblock %}
{% block header %}

@ -1,3 +1,4 @@
{% extends "_base.html" %}
{% block title %}SSO account deactivated{% endblock %}
{% block header %}

@ -1,3 +1,4 @@
{% extends "_base.html" %}
{% block title %}Create your account{% endblock %}
{% block header %}

@ -1,3 +1,4 @@
{% extends "_base.html" %}
{% block title %}Authentication failed{% endblock %}
{% block header %}

@ -1,3 +1,4 @@
{% extends "_base.html" %}
{% block title %}Confirm it's you{% endblock %}
{% block header %}

@ -1,3 +1,4 @@
{% extends "_base.html" %}
{% block title %}Authentication successful{% endblock %}
{% block header %}

@ -1,3 +1,4 @@
{% extends "_base.html" %}
{% block title %}Authentication failed{% endblock %}
{% block header %}

@ -1,3 +1,4 @@
{% extends "_base.html" %}
{% block title %}Choose identity provider{% endblock %}
{% block header %}

@ -1,3 +1,4 @@
{% extends "_base.html" %}
{% block title %}Agree to terms and conditions{% endblock %}
{% block header %}

@ -1,3 +1,4 @@
{% extends "_base.html" %}
{% block title %}Continue to your account{% endblock %}
{% block header %}

@ -1,3 +1,4 @@
{% extends "_base.html" %}
{% block title %}Authentication{% endblock %}
{% block header %}

Loading…
Cancel
Save