2022-11-16 06:14:38 -05:00
|
|
|
{% extends "_base.html" %}
|
2022-10-21 13:44:00 -04:00
|
|
|
{% block title %}Authentication{% endblock %}
|
|
|
|
|
|
|
|
{% block header %}
|
2020-10-02 06:15:53 -04:00
|
|
|
<link rel="stylesheet" href="/_matrix/static/client/register/style.css">
|
2022-10-21 13:44:00 -04:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block body %}
|
2020-10-02 06:15:53 -04:00
|
|
|
<form id="registrationForm" method="post" action="{{ myurl }}">
|
|
|
|
<div>
|
2021-08-18 08:13:35 -04:00
|
|
|
{% if error is defined %}
|
|
|
|
<p class="error"><strong>Error: {{ error }}</strong></p>
|
|
|
|
{% endif %}
|
2020-10-02 06:15:53 -04:00
|
|
|
<p>
|
|
|
|
Please click the button below if you agree to the
|
|
|
|
<a href="{{ terms_url }}">privacy policy of this homeserver.</a>
|
|
|
|
</p>
|
|
|
|
<input type="hidden" name="session" value="{{ session }}" />
|
|
|
|
<input type="submit" value="Agree" />
|
|
|
|
</div>
|
|
|
|
</form>
|
2022-10-21 13:44:00 -04:00
|
|
|
{% endblock %}
|