mirror of
				https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
				synced 2025-11-04 04:12:45 +00:00 
			
		
		
		
	Restructure project
This commit is contained in:
		@@ -2,53 +2,30 @@
 | 
			
		||||
{% from "auth/_breadcrumbs.html.j2" import breadcrumbs with context %}
 | 
			
		||||
{% import "materialize/wtf.html.j2" as wtf %}
 | 
			
		||||
 | 
			
		||||
{% block styles %}
 | 
			
		||||
{{ super() }}
 | 
			
		||||
<style>
 | 
			
		||||
  main {
 | 
			
		||||
    background-image: url("{{ url_for('static', filename='images/parallax_lq/04_german_text_book_paper.jpg') }}");
 | 
			
		||||
    background-repeat: no-repeat;
 | 
			
		||||
    background-size: cover;
 | 
			
		||||
  }
 | 
			
		||||
</style>
 | 
			
		||||
{% endblock styles %}
 | 
			
		||||
 | 
			
		||||
{% block page_content %}
 | 
			
		||||
<div class="container">
 | 
			
		||||
  <div class="row">
 | 
			
		||||
    <div class="col s12 m4">
 | 
			
		||||
      <div class="card medium">
 | 
			
		||||
        <div class="card-content">
 | 
			
		||||
          <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">
 | 
			
		||||
          <a class="btn" href="{{ url_for('.register') }}"><i class="material-icons left">person_add</i>Register</a>
 | 
			
		||||
        </div>
 | 
			
		||||
      </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="col s12 m8 offset-m2">
 | 
			
		||||
      <h1 id="title">{{ title }}</h1>
 | 
			
		||||
      <p>Want to boost your research and get going? Nopaque is free and no download is needed. <a href="{{ url_for('.register') }}">Register now</a>!</p>
 | 
			
		||||
 | 
			
		||||
    <div class="col s12 m8">
 | 
			
		||||
      <div class="card medium">
 | 
			
		||||
        <form method="POST">
 | 
			
		||||
          <div class="card-content">
 | 
			
		||||
            {{ form.hidden_tag() }}
 | 
			
		||||
            {{ wtf.render_field(form.user, material_icon='person') }}
 | 
			
		||||
            {{ wtf.render_field(form.password, material_icon='vpn_key') }}
 | 
			
		||||
            <div class="row" style="margin-bottom: 0;">
 | 
			
		||||
              <div class="col s6 left-align">
 | 
			
		||||
                <a href="{{ url_for('.reset_password_request') }}">Forgot your password?</a>
 | 
			
		||||
              </div>
 | 
			
		||||
              <div class="col s6 right-align">
 | 
			
		||||
                {{ wtf.render_field(form.remember_me) }}
 | 
			
		||||
              </div>
 | 
			
		||||
      <form method="POST">
 | 
			
		||||
        <div class="card-panel">
 | 
			
		||||
          {{ form.hidden_tag() }}
 | 
			
		||||
          {{ wtf.render_field(form.user, material_icon='person') }}
 | 
			
		||||
          {{ wtf.render_field(form.password, material_icon='vpn_key') }}
 | 
			
		||||
          <div class="row">
 | 
			
		||||
            <div class="col s6 left-align">
 | 
			
		||||
              <a href="{{ url_for('.reset_password_request') }}">Forgot your password?</a>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="col s6 right-align">
 | 
			
		||||
              {{ wtf.render_field(form.remember_me) }}
 | 
			
		||||
            </div>
 | 
			
		||||
          </div>
 | 
			
		||||
          <div class="card-action right-align">
 | 
			
		||||
            {{ wtf.render_field(form.submit, material_icon='send') }}
 | 
			
		||||
          </div>
 | 
			
		||||
        </form>
 | 
			
		||||
      </div>
 | 
			
		||||
          {{ wtf.render_field(form.submit, material_icon='send', class_='width-100') }}
 | 
			
		||||
        </div>
 | 
			
		||||
      </form>
 | 
			
		||||
    </div>
 | 
			
		||||
  </div>
 | 
			
		||||
</div>
 | 
			
		||||
 
 | 
			
		||||
@@ -2,47 +2,31 @@
 | 
			
		||||
{% from "auth/_breadcrumbs.html.j2" import breadcrumbs with context %}
 | 
			
		||||
{% import "materialize/wtf.html.j2" as wtf %}
 | 
			
		||||
 | 
			
		||||
{% block styles %}
 | 
			
		||||
{{ super() }}
 | 
			
		||||
<style>
 | 
			
		||||
  main {
 | 
			
		||||
    background-image: url("{{ url_for('static', filename='images/parallax_lq/02_concept_document_focus_letter.jpg') }}");
 | 
			
		||||
    background-repeat: no-repeat;
 | 
			
		||||
    background-size: cover;
 | 
			
		||||
  }
 | 
			
		||||
</style>
 | 
			
		||||
{% endblock styles %}
 | 
			
		||||
 | 
			
		||||
{% block page_content %}
 | 
			
		||||
<div class="container">
 | 
			
		||||
  <div class="row">
 | 
			
		||||
    <div class="col s12 m4">
 | 
			
		||||
      <div class="card medium">
 | 
			
		||||
        <div class="card-content">
 | 
			
		||||
          <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>
 | 
			
		||||
        </div>
 | 
			
		||||
      </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <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>
 | 
			
		||||
 | 
			
		||||
    <div class="col s12 m8">
 | 
			
		||||
      <div class="card medium">
 | 
			
		||||
        <form method="POST">
 | 
			
		||||
          <div class="card-content">
 | 
			
		||||
            {{ 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_confirmation, material_icon='vpn_key') }}
 | 
			
		||||
            {{ wtf.render_field(form.email, class_='validate', material_icon='email', type='email') }}
 | 
			
		||||
          </div>
 | 
			
		||||
          <div class="card-action right-align">
 | 
			
		||||
            {{ wtf.render_field(form.submit, material_icon='send') }}
 | 
			
		||||
          </div>
 | 
			
		||||
        </form>
 | 
			
		||||
      </div>
 | 
			
		||||
    </div>
 | 
			
		||||
      <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') }}
 | 
			
		||||
          {{ wtf.render_field(form.submit, class_='width-100', material_icon='send') }}
 | 
			
		||||
        </div>
 | 
			
		||||
      </form>
 | 
			
		||||
  </div>
 | 
			
		||||
</div>
 | 
			
		||||
{% endblock page_content %}
 | 
			
		||||
 
 | 
			
		||||
@@ -5,27 +5,18 @@
 | 
			
		||||
{% block page_content %}
 | 
			
		||||
<div class="container">
 | 
			
		||||
  <div class="row">
 | 
			
		||||
    <div class="col s12">
 | 
			
		||||
    <div class="col s12 m8 offset-m2">
 | 
			
		||||
      <h1 id="title">{{ title }}</h1>
 | 
			
		||||
    </div>
 | 
			
		||||
 | 
			
		||||
    <div class="col s12 m4">
 | 
			
		||||
      <p>Enter a new password and confirm it! After that, the entered password is your new one!</p>
 | 
			
		||||
    </div>
 | 
			
		||||
 | 
			
		||||
    <div class="col s12 m8">
 | 
			
		||||
      <div class="card">
 | 
			
		||||
        <form method="POST">
 | 
			
		||||
          <div class="card-content">
 | 
			
		||||
            {{ form.hidden_tag() }}
 | 
			
		||||
            {{ wtf.render_field(form.password) }}
 | 
			
		||||
            {{ wtf.render_field(form.password_confirmation) }}
 | 
			
		||||
          </div>
 | 
			
		||||
          <div class="card-action right-align">
 | 
			
		||||
            {{ wtf.render_field(form.submit, material_icon='send') }}
 | 
			
		||||
          </div>
 | 
			
		||||
        </form>
 | 
			
		||||
      </div>
 | 
			
		||||
      <form method="POST">
 | 
			
		||||
        <div class="card-panel">
 | 
			
		||||
          {{ form.hidden_tag() }}
 | 
			
		||||
          {{ wtf.render_field(form.password) }}
 | 
			
		||||
          {{ wtf.render_field(form.password_2) }}
 | 
			
		||||
          {{ wtf.render_field(form.submit, class_='width-100', material_icon='send') }}
 | 
			
		||||
        </div>
 | 
			
		||||
      </form>
 | 
			
		||||
    </div>
 | 
			
		||||
  </div>
 | 
			
		||||
</div>
 | 
			
		||||
 
 | 
			
		||||
@@ -5,26 +5,17 @@
 | 
			
		||||
{% block page_content %}
 | 
			
		||||
<div class="container">
 | 
			
		||||
  <div class="row">
 | 
			
		||||
    <div class="col s12">
 | 
			
		||||
    <div class="col s12 m8 offset-m2">
 | 
			
		||||
      <h1 id="title">{{ title }}</h1>
 | 
			
		||||
    </div>
 | 
			
		||||
 | 
			
		||||
    <div class="col s12 m4">
 | 
			
		||||
      <p>After entering your email address you will receive instructions on how to reset your password.</p>
 | 
			
		||||
    </div>
 | 
			
		||||
 | 
			
		||||
    <div class="col s12 m8">
 | 
			
		||||
      <div class="card">
 | 
			
		||||
        <form method="POST">
 | 
			
		||||
          <div class="card-content">
 | 
			
		||||
            {{ form.hidden_tag() }}
 | 
			
		||||
            {{ wtf.render_field(form.email, class_='validate', material_icon='email', type='email') }}
 | 
			
		||||
          </div>
 | 
			
		||||
          <div class="card-action right-align">
 | 
			
		||||
            {{ wtf.render_field(form.submit, material_icon='send') }}
 | 
			
		||||
          </div>
 | 
			
		||||
        </form>
 | 
			
		||||
      </div>
 | 
			
		||||
      <form method="POST">
 | 
			
		||||
        <div class="card-panel">
 | 
			
		||||
          {{ form.hidden_tag() }}
 | 
			
		||||
          {{ wtf.render_field(form.email, class_='validate', material_icon='email', type='email') }}
 | 
			
		||||
          {{ wtf.render_field(form.submit, class_='width-100', material_icon='send') }}
 | 
			
		||||
        </div>
 | 
			
		||||
      </form>
 | 
			
		||||
    </div>
 | 
			
		||||
  </div>
 | 
			
		||||
</div>
 | 
			
		||||
 
 | 
			
		||||
@@ -6,20 +6,13 @@
 | 
			
		||||
  <div class="row">
 | 
			
		||||
    <div class="col s12">
 | 
			
		||||
      <h1 id="title">{{ title }}</h1>
 | 
			
		||||
    </div>
 | 
			
		||||
 | 
			
		||||
    <div class="col s12">
 | 
			
		||||
      <div class="card">
 | 
			
		||||
        <div class="card-content">
 | 
			
		||||
          <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? Click the button below!</p>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="card-action right-align">
 | 
			
		||||
          <a class="btn" href="{{ url_for('.resend_confirmation') }}">Resend confirmation mail</a>
 | 
			
		||||
        </div>
 | 
			
		||||
      </div>
 | 
			
		||||
      <p>Hello, <b>{{ current_user.username }}</b>.</p>
 | 
			
		||||
      <p>
 | 
			
		||||
        You have not confirmed your account yet. 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('.confirm_request') }}">Get a new one</a>.</p>
 | 
			
		||||
    </div>
 | 
			
		||||
  </div>
 | 
			
		||||
</div>
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user