microblog/app/templates/login.html

13 lines
362 B
HTML

{% extends 'base.html' %}
{% import "bootstrap_wtf.html" as wtf %}
{% block content %}
<h1>Sign In</h1>
{{ wtf.quick_form(form) }}
<p>New User? <a href="{{ url_for('register') }}">Click to Register!</a></p>
<p>
Forgot Your Password?
<a href="{{ url_for('reset_password_request') }}">Click to Reset It</a>
</p>
{% endblock %}