aboutsummaryrefslogtreecommitdiff
path: root/app/templates/auth/login.html
blob: 644b38511668f4ff5d2b3da6ca6e82558c05a96d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% extends "base.html" %}
{% import 'bootstrap/wtf.html' as wtf %}

{% block app_content %}
<h1>Sign In</h1>
<div class="row">
	<div class="col-md-4">
		{{ wtf.quick_form(form) }}
	</div>
</div>
<br>
<p>New User? <a href="{{ url_for('auth.register') }}">Click to Register!</a></p>
<p>
Forgot your password?
<a href="{{ url_for('auth.reset_password_request') }}">Click here to reset it</a>
</p>
{% endblock %}