2020-02-07 14:21:59 +00:00
|
|
|
{% extends "nopaque.html.j2" %}
|
|
|
|
|
2020-02-27 10:29:42 +00:00
|
|
|
{% set headline = ' ' %}
|
|
|
|
|
2019-07-04 13:17:51 +00:00
|
|
|
{% block page_content %}
|
2020-02-20 09:28:05 +00:00
|
|
|
<style>
|
|
|
|
main {
|
|
|
|
background-image: url("{{ url_for('static', filename='images/bible_text.jpg') }}");
|
2020-02-20 09:32:02 +00:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: cover;
|
2020-02-20 09:28:05 +00:00
|
|
|
}
|
|
|
|
</style>
|
|
|
|
|
2019-07-09 14:59:04 +00:00
|
|
|
<div class="col s12 m4">
|
2020-02-20 09:28:05 +00:00
|
|
|
<div class="card medium">
|
|
|
|
<div class="card-content">
|
2020-02-27 10:29:42 +00:00
|
|
|
<h2>Register</h2>
|
|
|
|
<p>Simply enter a username and password to receive your registration email. After that you can start right away.</p>
|
|
|
|
<p>It goes without saying that the <a>General Data Protection Regulation</a> applies, only necessary data is stored.</p>
|
2020-02-20 09:28:05 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2019-07-09 14:59:04 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="col s12 m8">
|
2020-02-20 09:28:05 +00:00
|
|
|
<div class="card medium">
|
2019-07-09 12:13:56 +00:00
|
|
|
<form method="POST">
|
|
|
|
<div class="card-content">
|
2020-02-17 15:14:24 +00:00
|
|
|
{{ registration_form.hidden_tag() }}
|
2019-07-08 12:06:35 +00:00
|
|
|
<div class="input-field">
|
2019-07-09 14:59:04 +00:00
|
|
|
<i class="material-icons prefix">person</i>
|
2020-02-17 15:14:24 +00:00
|
|
|
{{ registration_form.username(class='validate', data_length='64') }}
|
|
|
|
{{ registration_form.username.label }}
|
|
|
|
{% for error in registration_form.username.errors %}
|
2019-07-12 15:22:15 +00:00
|
|
|
<span class="helper-text red-text">{{ error }}</span>
|
2019-07-08 12:06:35 +00:00
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
<div class="input-field">
|
|
|
|
<i class="material-icons prefix">vpn_key</i>
|
2020-02-17 15:14:24 +00:00
|
|
|
{{ registration_form.password(class='validate') }}
|
|
|
|
{{ registration_form.password.label }}
|
|
|
|
{% for error in registration_form.password.errors %}
|
2019-07-12 15:22:15 +00:00
|
|
|
<span class="helper-text red-text">{{ error }}</span>
|
2019-07-08 12:06:35 +00:00
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
<div class="input-field">
|
|
|
|
<i class="material-icons prefix">vpn_key</i>
|
2020-02-19 15:58:56 +00:00
|
|
|
{{ registration_form.password_confirmation(class='validate') }}
|
|
|
|
{{ registration_form.password_confirmation.label }}
|
|
|
|
{% for error in registration_form.password_confirmation.errors %}
|
2019-07-12 15:22:15 +00:00
|
|
|
<span class="helper-text red-text">{{ error }}</span>
|
2019-07-08 12:06:35 +00:00
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
<div class="input-field ">
|
|
|
|
<i class="material-icons prefix">email</i>
|
2020-02-17 15:14:24 +00:00
|
|
|
{{ registration_form.email(class='validate', type='email') }}
|
|
|
|
{{ registration_form.email.label }}
|
|
|
|
{% for error in registration_form.email.errors %}
|
2019-07-12 15:22:15 +00:00
|
|
|
<span class="helper-text red-text">{{ error }}</span>
|
2019-07-08 12:06:35 +00:00
|
|
|
{% endfor %}
|
|
|
|
</div>
|
2019-07-09 12:13:56 +00:00
|
|
|
</div>
|
|
|
|
<div class="card-action right-align">
|
2020-02-24 08:27:02 +00:00
|
|
|
{{ macros.submit_button(registration_form.submit) }}
|
2019-07-09 12:13:56 +00:00
|
|
|
</div>
|
|
|
|
</form>
|
2019-07-04 13:17:51 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|