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 {
2020-02-27 14:41:06 +00:00
background-image: url("{{ url_for('static', filename='images/parallax_lq/02_concept_document_focus_letter.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>
2020-08-03 08:23:11 +00:00
<p>It goes without saying that the <a href="{{ url_for('main.privacy_policy') }}">General Data Protection Regulation</a> applies, only necessary data is stored.</p>
<p>Please also read our <a href="{{ url_for('main.terms_of_use') }}">terms of use</a> before signing up for nopaque!</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-04-17 09:04:09 +00:00
{{ registration_form.hidden_tag() }}
2020-04-17 09:13:11 +00:00
{{ M.render_field(registration_form.username, data_length='64', material_icon='person') }}
{{ M.render_field(registration_form.password, data_length='128', material_icon='vpn_key') }}
{{ M.render_field(registration_form.password_confirmation, data_length='128', material_icon='vpn_key') }}
{{ M.render_field(registration_form.email, class_='validate', material_icon='email', type='email') }}
2019-07-09 12:13:56 +00:00
</div>
<div class="card-action right-align">
2020-04-17 09:13:11 +00:00
{{ M.render_field(registration_form.submit, material_icon='send') }}
2019-07-09 12:13:56 +00:00
</div>
</form>
2019-07-04 13:17:51 +00:00
</div>
</div>
{% endblock %}