summary refs log tree commit diff
path: root/v1.39/privacy_policy_templates/en/1.0.html
blob: 321c7e46710a3e840af0158971c061b7fc297162 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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>