Rework auth package

This commit is contained in:
Patrick Jentsch 2020-10-23 10:26:04 +02:00
parent b840746fed
commit 780de62db2
5 changed files with 8 additions and 8 deletions

View File

@ -18,7 +18,7 @@
<div class="col s12 m4">
<div class="card medium">
<div class="card-content">
<h1>{{ title }}</h1>
<h1 id="title">{{ title }}</h1>
<p>Want to boost your research and get going? nopaque is free and no download is needed. Register now!</p>
</div>
<div class="card-action right-align">

View File

@ -18,7 +18,7 @@
<div class="col s12 m4">
<div class="card medium">
<div class="card-content">
<h1>Register</h1>
<h1 id="title">{{ title }}</h1>
<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 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>

View File

@ -5,11 +5,11 @@
<div class="container">
<div class="row">
<div class="col s12">
<h1>{{ title }}</h1>
<h1 id="title">{{ title }}</h1>
</div>
<div class="col s12 m4">
<p>dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren,</p>
<p>Enter a new password and confirm it! After that, the entered password is your new one!</p>
</div>
<div class="col s12 m8">

View File

@ -5,7 +5,7 @@
<div class="container">
<div class="row">
<div class="col s12">
<h1>{{ title }}</h1>
<h1 id="title">{{ title }}</h1>
</div>
<div class="col s12 m4">

View File

@ -4,7 +4,7 @@
<div class="container">
<div class="row">
<div class="col s12">
<h1>{{ title }}</h1>
<h1 id="title">{{ title }}</h1>
</div>
<div class="col s12">
@ -13,10 +13,10 @@
<span class="card-title">Hello, {{ current_user.username }}!</span>
<p><b>You have not confirmed your account yet.</b></p>
<p>Before you can access this site you need to confirm your account. Check your inbox, you should have received an email with a confirmation link.</p>
<p>Need another confirmation email? <a href="{{ url_for('.resend_confirmation') }}">Click here</a></p>
<p>Need another confirmation email? Click the button below!</p>
</div>
<div class="card-action right-align">
<a class="btn" href="{{ url_for('.register') }}"><i class="material-icons left">person_add</i>Register</a>
<a class="btn" href="{{ url_for('.resend_confirmation') }}">Resend confirmation mail</a>
</div>
</div>
</div>