mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-15 17:25:44 +00:00
32 lines
1.1 KiB
Django/Jinja
32 lines
1.1 KiB
Django/Jinja
{% extends "base.html.j2" %}
|
|
{% import "materialize/wtf.html.j2" as wtf %}
|
|
|
|
|
|
{% block page_content %}
|
|
<div class="container">
|
|
<div class="row">
|
|
<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>
|
|
|
|
<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>
|
|
{{ wtf.render_field(form.submit, material_icon='send', class_='width-100') }}
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock page_content %}
|