terms.html 768 B

1234567891011121314151617181920212223
  1. <html>
  2. <head>
  3. <title>Authentication</title>
  4. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <link rel="stylesheet" href="/_matrix/static/client/register/style.css">
  7. </head>
  8. <body>
  9. <form id="registrationForm" method="post" action="{{ myurl }}">
  10. <div>
  11. {% if error is defined %}
  12. <p class="error"><strong>Error: {{ error }}</strong></p>
  13. {% endif %}
  14. <p>
  15. Please click the button below if you agree to the
  16. <a href="{{ terms_url }}">privacy policy of this homeserver.</a>
  17. </p>
  18. <input type="hidden" name="session" value="{{ session }}" />
  19. <input type="submit" value="Agree" />
  20. </div>
  21. </form>
  22. </body>
  23. </html>