diff options
author | anoadragon453 <anoadragon453@users.noreply.github.com> | 2021-06-03 16:21:02 +0000 |
---|---|---|
committer | anoadragon453 <anoadragon453@users.noreply.github.com> | 2021-06-03 16:21:02 +0000 |
commit | 5b98526363a34c5c94d4ede0e8c44d262c085b78 (patch) | |
tree | c8e846299a0c82d24bd920a27fdfd147fa8a3a6c /develop/privacy_policy_templates | |
parent | Set up gh-pages branch (diff) | |
download | synapse-5b98526363a34c5c94d4ede0e8c44d262c085b78.tar.xz |
deploy: fd9856e4a98fb3fa9c139317b0a3b79f22aff1c7
Diffstat (limited to 'develop/privacy_policy_templates')
-rw-r--r-- | develop/privacy_policy_templates/en/1.0.html | 26 | ||||
-rw-r--r-- | develop/privacy_policy_templates/en/success.html | 11 |
2 files changed, 37 insertions, 0 deletions
diff --git a/develop/privacy_policy_templates/en/1.0.html b/develop/privacy_policy_templates/en/1.0.html new file mode 100644 index 0000000000..321c7e4671 --- /dev/null +++ b/develop/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/develop/privacy_policy_templates/en/success.html b/develop/privacy_policy_templates/en/success.html new file mode 100644 index 0000000000..d55e90c94f --- /dev/null +++ b/develop/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> |