Files
classifieds/app/templates/auth/login.html
T
2026-06-15 11:23:05 -04:00

20 lines
657 B
HTML

{% extends "base.html" %}
{% from "auth/_macros.html" import field %}
{% block title %}{{ _('Sign in') }}{% endblock %}
{% block content %}
<div class="card narrow">
<h2>{{ _('Sign in') }}</h2>
<form method="post" novalidate>
{{ form.hidden_tag() }}
{{ field(form.email) }}
{{ field(form.password) }}
<label class="check">{{ form.remember() }} {{ form.remember.label.text }}</label>
{{ form.submit(class="btn") }}
</form>
<p class="muted">
<a href="{{ url_for('auth.reset_request') }}">{{ _('Forgot password?') }}</a> ·
<a href="{{ url_for('auth.register') }}">{{ _('Create account') }}</a>
</p>
</div>
{% endblock %}