microblog/app/templates/login.html

18 lines
462 B
HTML
Raw Normal View History

2017-09-27 06:43:28 +00:00
{% extends 'base.html' %}
{% import 'bootstrap/wtf.html' as wtf %}
2017-09-05 07:04:56 +00:00
2017-09-27 06:43:28 +00:00
{% block app_content %}
2017-09-05 07:04:56 +00:00
<h1>Sign In</h1>
2017-09-27 06:43:28 +00:00
<div class="row">
<div class="col-md-4">
{{ wtf.quick_form(form) }}
</div>
</div>
<br>
2017-09-13 06:31:39 +00:00
<p>New User? <a href="{{ url_for('register') }}">Click to Register!</a></p>
2017-09-26 07:16:46 +00:00
<p>
Forgot Your Password?
<a href="{{ url_for('reset_password_request') }}">Click to Reset It</a>
</p>
2017-09-05 07:04:56 +00:00
{% endblock %}