summary refs log tree commit diff
path: root/synapse/res/templates/invalid_token.html
diff options
context:
space:
mode:
authorMathieu Velten <mathieuv@matrix.org>2022-11-28 12:57:35 +0100
committerMathieu Velten <mathieuv@matrix.org>2022-11-28 12:57:35 +0100
commit5ff0ba261c5b9bc9310905eef94e267d2e8d0708 (patch)
tree298b7e03ec1b20b79092a63d2daedc33b279db3a /synapse/res/templates/invalid_token.html
parentAdress comments (diff)
parentRun Rust CI when Cargo.lock changes too (#14571) (diff)
downloadsynapse-5ff0ba261c5b9bc9310905eef94e267d2e8d0708.tar.xz
Merge remote-tracking branch 'origin/develop' into mv/unbind-callback
Diffstat (limited to 'synapse/res/templates/invalid_token.html')
-rw-r--r--synapse/res/templates/invalid_token.html7
1 files changed, 6 insertions, 1 deletions
diff --git a/synapse/res/templates/invalid_token.html b/synapse/res/templates/invalid_token.html

index 6bd2b98364..b19e3023a1 100644 --- a/synapse/res/templates/invalid_token.html +++ b/synapse/res/templates/invalid_token.html
@@ -1 +1,6 @@ -<html><body>Invalid renewal token.</body><html> +{% extends "_base.html" %} +{% block title %}Invalid renewal token.{% endblock %} + +{% block body %} +<p>Invalid renewal token.</p> +{% endblock %}