diff options
author | Brendan Abolivier <babolivier@matrix.org> | 2019-07-31 18:12:04 +0200 |
---|---|---|
committer | Brendan Abolivier <babolivier@matrix.org> | 2019-08-01 11:59:27 +0200 |
commit | a4a9ded4d002d7edc6d6f46cc5ddcf279a0d7e9b (patch) | |
tree | 271e0ca059a84b6d30b915a57d8bc7233d829e68 /synapse/res | |
parent | Merge pull request #5792 from matrix-org/erikj/fix_bg_update (diff) | |
download | synapse-a4a9ded4d002d7edc6d6f46cc5ddcf279a0d7e9b.tar.xz |
Allow defining HTML templates to serve the user on account renewal
Diffstat (limited to 'synapse/res')
-rw-r--r-- | synapse/res/templates/account_renewed.html | 1 | ||||
-rw-r--r-- | synapse/res/templates/invalid_token.html | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/synapse/res/templates/account_renewed.html b/synapse/res/templates/account_renewed.html new file mode 100644 index 0000000000..894da030af --- /dev/null +++ b/synapse/res/templates/account_renewed.html @@ -0,0 +1 @@ +<html><body>Your account has been successfully renewed.</body><html> diff --git a/synapse/res/templates/invalid_token.html b/synapse/res/templates/invalid_token.html new file mode 100644 index 0000000000..6bd2b98364 --- /dev/null +++ b/synapse/res/templates/invalid_token.html @@ -0,0 +1 @@ +<html><body>Invalid renewal token.</body><html> |