nopaque/app/templates/auth/register.html.j2

36 lines
1.3 KiB
Plaintext
Raw Normal View History

{% extends "base.html.j2" %}
{% import "materialize/wtf.html.j2" as wtf %}
2020-02-07 14:21:59 +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>
</div>
</div>
2021-12-01 13:15:20 +00:00
{% endblock page_content %}