{% extends "base.html" %} {% block title %}Reset Your Password - Moto Adventure{% endblock %} {% block content %}

Reset Your Password

Enter your new password below

{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %} {% endfor %} {% endif %} {% endwith %}
Resetting password for: {{ user.nickname }} ({{ user.email }})
{{ form.hidden_tag() }}
{{ form.password.label(class="form-label") }} {{ form.password(class="form-control") }} {% if form.password.errors %}
{% for error in form.password.errors %}
{{ error }}
{% endfor %}
{% endif %}
Password must be at least 8 characters long and contain both letters and numbers.
{{ form.password2.label(class="form-label") }} {{ form.password2(class="form-control") }} {% if form.password2.errors %}
{% for error in form.password2.errors %}
{{ error }}
{% endfor %}
{% endif %}
{{ form.submit(class="btn btn-primary btn-lg") }}
Security Notice

This reset link can only be used once and will expire soon. After resetting your password, you'll be able to log in immediately.

{% endblock %}