2022-11-16 04:14:38 -07:00
|
|
|
{% extends "_base.html" %}
|
2022-10-21 11:44:00 -06:00
|
|
|
{% block title %}Authentication{% endblock %}
|
|
|
|
|
|
|
|
{% block header %}
|
2023-04-13 09:36:29 -06:00
|
|
|
<style type="text/css">
|
|
|
|
#registrationForm input {
|
|
|
|
display: block;
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
</style>
|
2022-10-21 11:44:00 -06:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block body %}
|
2020-10-02 04:15:53 -06:00
|
|
|
<form id="registrationForm" method="post" action="{{ myurl }}">
|
|
|
|
<div>
|
2021-08-18 06:13:35 -06:00
|
|
|
{% if error is defined %}
|
|
|
|
<p class="error"><strong>Error: {{ error }}</strong></p>
|
|
|
|
{% endif %}
|
2020-10-02 04:15:53 -06: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 11:44:00 -06:00
|
|
|
{% endblock %}
|