diff options
author | Richard van der Hoff <richard@matrix.org> | 2018-05-11 00:17:11 +0100 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2018-05-15 15:11:59 +0100 |
commit | 47815edcfae73c5b938f8354853a09c0b80ef27e (patch) | |
tree | a68e0f4ff14809f5a30b4446c3837aa1eb725957 /docs/privacy_policy_templates/en | |
parent | Merge remote-tracking branch 'origin/master' into develop (diff) | |
download | synapse-47815edcfae73c5b938f8354853a09c0b80ef27e.tar.xz |
ConsentResource to gather policy consent from users
Hopefully there are enough comments and docs in this that it makes sense on its own.
Diffstat (limited to 'docs/privacy_policy_templates/en')
-rw-r--r-- | docs/privacy_policy_templates/en/1.0.html | 17 | ||||
-rw-r--r-- | docs/privacy_policy_templates/en/success.html | 11 |
2 files changed, 28 insertions, 0 deletions
diff --git a/docs/privacy_policy_templates/en/1.0.html b/docs/privacy_policy_templates/en/1.0.html new file mode 100644 index 0000000000..ab8666f0c3 --- /dev/null +++ b/docs/privacy_policy_templates/en/1.0.html @@ -0,0 +1,17 @@ +<!doctype html> +<html lang="en"> + <head> + <title>Matrix.org Privacy policy</title> + </head> + <body> + <p> + All your base are belong to us. + </p> + <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> + </body> +</html> diff --git a/docs/privacy_policy_templates/en/success.html b/docs/privacy_policy_templates/en/success.html new file mode 100644 index 0000000000..d55e90c94f --- /dev/null +++ b/docs/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> |