diff options
author | DMRobertson <DMRobertson@users.noreply.github.com> | 2023-10-03 10:53:20 +0000 |
---|---|---|
committer | DMRobertson <DMRobertson@users.noreply.github.com> | 2023-10-03 10:53:20 +0000 |
commit | a60bccf9d17b9815513af078c46229ac3395c5e7 (patch) | |
tree | 1266e1bc1dbf840615dfbb0b90f6f323d485a6dc /v1.94/privacy_policy_templates | |
parent | deploy: 1e67191a79a06fb4031b17c24b4621c066345182 (diff) | |
download | synapse-a60bccf9d17b9815513af078c46229ac3395c5e7.tar.xz |
deploy: 8b50a9d01da2c84bb9838287519fa3e0a4e955ce
Diffstat (limited to 'v1.94/privacy_policy_templates')
-rw-r--r-- | v1.94/privacy_policy_templates/en/1.0.html | 26 | ||||
-rw-r--r-- | v1.94/privacy_policy_templates/en/success.html | 11 |
2 files changed, 37 insertions, 0 deletions
diff --git a/v1.94/privacy_policy_templates/en/1.0.html b/v1.94/privacy_policy_templates/en/1.0.html new file mode 100644 index 0000000000..321c7e4671 --- /dev/null +++ b/v1.94/privacy_policy_templates/en/1.0.html @@ -0,0 +1,26 @@ +<!doctype html> +<html lang="en"> + <head> + <title>Matrix.org Privacy policy</title> + </head> + <body> + {% if has_consented %} + <p> + Your base already belong to us. + </p> + {% else %} + <p> + All your base are belong to us. + </p> + {% if not public_version %} + <!-- The variables used here are only provided when the 'u' param is given to the homeserver --> + <form method="post" action="consent"> + <input type="hidden" name="v" value="{{version}}"/> + <input type="hidden" name="u" value="{{user}}"/> + <input type="hidden" name="h" value="{{userhmac}}"/> + <input type="submit" value="Sure thing!"/> + </form> + {% endif %} + {% endif %} + </body> +</html> diff --git a/v1.94/privacy_policy_templates/en/success.html b/v1.94/privacy_policy_templates/en/success.html new file mode 100644 index 0000000000..d55e90c94f --- /dev/null +++ b/v1.94/privacy_policy_templates/en/success.html @@ -0,0 +1,11 @@ +<!doctype html> +<html lang="en"> + <head> + <title>Matrix.org Privacy policy</title> + </head> + <body> + <p> + Sweet. + </p> + </body> +</html> |