2018-05-10 19:17:11 -04:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<title>Matrix.org Privacy policy</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
2018-05-22 09:50:22 -04:00
|
|
|
{% if has_consented %}
|
|
|
|
<p>
|
|
|
|
Your base already belong to us.
|
|
|
|
</p>
|
|
|
|
{% else %}
|
2018-05-10 19:17:11 -04:00
|
|
|
<p>
|
|
|
|
All your base are belong to us.
|
|
|
|
</p>
|
2018-10-12 19:53:14 -04:00
|
|
|
{% 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 %}
|
2018-05-22 09:50:22 -04:00
|
|
|
{% endif %}
|
2018-05-10 19:17:11 -04:00
|
|
|
</body>
|
|
|
|
</html>
|