sonarr-rss/templates/forms/forgot.html

13 lines
833 B
HTML

{% extends 'layouts/form.html' %}
{% block title %}Reset Password{% endblock %}
{% block content %}
<form method="post" class="form form-reset">
<h3 class="form-heading">Reset Password <a href="{{ url_for('home') }}" title="Back to homepage"><i class="fa fa-home pull-right"></i></a></h3>
{{ form.email(class_ = 'form-control first-input last-input', placeholder = form.email.label.text) }}
<p class="pull-left"><a href="{{ url_for('login') }}">Login</a></p>
<p class="pull-right"><a href="{{ url_for('register') }}">Register</a></p>
<input type="submit" value="Submit" class="btn btn-lg btn-primary btn-block" disabled>
<p>You must add database as well as Flask-Login to enable user management. See the <a href="http://www.realpython.com">Real Python</a> course for more info!</p>
</form>
{% endblock %}