2021-05-28 13:51:23 +00:00
|
|
|
{% extends "base.html.j2" %}
|
2021-05-27 11:05:46 +00:00
|
|
|
{% import "materialize/wtf.html.j2" as wtf %}
|
2020-02-07 14:21:59 +00:00
|
|
|
|
2020-02-20 09:28:05 +00:00
|
|
|
|
2020-10-23 06:51:46 +00:00
|
|
|
{% block page_content %}
|
|
|
|
<div class="container">
|
|
|
|
<div class="row">
|
2022-09-02 11:07:30 +00:00
|
|
|
<div class="col s12 m8 offset-m2">
|
|
|
|
<h1 id="title">{{ title }}</h1>
|
|
|
|
<p>
|
|
|
|
Simply enter a username and password to receive your registration email.
|
|
|
|
After that you can start right away. It goes without saying that the
|
|
|
|
<a href="{{ url_for('main.privacy_policy') }}">General Data Protection Regulation</a>
|
|
|
|
applies, only necessary data is stored. Please also read our
|
|
|
|
<a href="{{ url_for('main.terms_of_use') }}">terms of use</a> before
|
|
|
|
signing up for nopaque!
|
|
|
|
</p>
|
2019-07-09 14:59:04 +00:00
|
|
|
|
2022-09-02 11:07:30 +00:00
|
|
|
<form method="POST">
|
|
|
|
<div class="card-panel">
|
|
|
|
{{ form.hidden_tag() }}
|
|
|
|
{{ wtf.render_field(form.username, material_icon='person') }}
|
|
|
|
{{ wtf.render_field(form.password, material_icon='vpn_key') }}
|
|
|
|
{{ wtf.render_field(form.password_2, material_icon='vpn_key') }}
|
|
|
|
{{ wtf.render_field(form.email, class_='validate', material_icon='email', type='email') }}
|
2023-04-13 14:08:07 +00:00
|
|
|
<br>
|
|
|
|
{{ wtf.render_field(form.terms_of_use_accepted, type='checkbox')}}
|
|
|
|
<p></p>
|
|
|
|
<br>
|
2022-09-02 11:07:30 +00:00
|
|
|
{{ wtf.render_field(form.submit, class_='width-100', material_icon='send') }}
|
|
|
|
</div>
|
|
|
|
</form>
|
2019-07-04 13:17:51 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2021-12-01 13:15:20 +00:00
|
|
|
{% endblock page_content %}
|