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

40 lines
1.4 KiB
Plaintext
Raw Normal View History

{% extends "base.html.j2" %}
2024-05-04 14:41:40 +02:00
{% import "wtf.html.j2" as wtf %}
2020-02-07 15:21:59 +01:00
2020-10-23 08:51:46 +02:00
{% block page_content %}
<div class="container">
<div class="row">
2024-11-20 15:56:48 +01:00
<div class="col s12 l8 offset-l2">
2022-09-02 13:07:30 +02:00
<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 16:59:04 +02:00
2022-09-02 13:07:30 +02: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') }}
2024-11-20 15:56:48 +01:00
{{ wtf.render_field(form.email, material_icon='email', type='email') }}
<div class="row">
<div class="col s12 l6">
{{ wtf.render_field(form.terms_of_use_accepted)}}
</div>
<div class="col s12 l6 right-align">
{{ wtf.render_field(form.submit, material_icon='send') }}
</div>
</div>
2022-09-02 13:07:30 +02:00
</div>
</form>
</div>
</div>
</div>
2021-12-01 14:15:20 +01:00
{% endblock page_content %}