Skip to content
This repository was archived by the owner on Apr 26, 2024. It is now read-only.

Commit d14035f

Browse files
committed
Fix HTML templates missing correct HTML tags
Fixes #14421. Broke in #13652.
1 parent fb66fae commit d14035f

22 files changed

+23
-0
lines changed

synapse/res/templates/invalid_token.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
{% extends "_base.html" %}
12
{% block title %}Invalid renewal token.{% endblock %}
23

34
{% block body %}

synapse/res/templates/notif_mail.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
{% extends "_base.html" %}
2+
13
{% block title %}New activity in room{% endblock %}
24

35
{% block header %}

synapse/res/templates/password_reset.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
{% extends "_base.html" %}
12
{% block title %}Password reset{% endblock %}
23

34
{% block body %}

synapse/res/templates/password_reset_confirmation.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
{% extends "_base.html" %}
12
{% block title %}Password reset confirmation{% endblock %}
23

34
{% block body %}

synapse/res/templates/password_reset_failure.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
{% extends "_base.html" %}
12
{% block title %}Password reset failure{% endblock %}
23

34
{% block body %}

synapse/res/templates/password_reset_success.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
{% extends "_base.html" %}
12
{% block title %}Password reset success{% endblock %}
23

34
{% block body %}

synapse/res/templates/recaptcha.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
{% extends "_base.html" %}
12
{% block title %}Authentication{% endblock %}
23

34
{% block header %}

synapse/res/templates/registration.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
{% extends "_base.html" %}
12
{% block title %}Registration{% endblock %}
23

34
{% block body %}

synapse/res/templates/registration_failure.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
{% extends "_base.html" %}
12
{% block title %}Registration failure{% endblock %}
23

34
{% block body %}

synapse/res/templates/registration_success.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
{% extends "_base.html" %}
12
{% block title %}Your email has now been validated{% endblock %}
23

34
{% block body %}

0 commit comments

Comments
 (0)