{% extends "layout.html" %} {% block title %}Login - Community Forum{% endblock %} {% block breadcrumb %} Home / Login {% endblock %} {% block content %}

Login

Sign in to access your account

{{ form.hidden_tag() }}
{{ form.username(class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:border-blue-500 focus:ring focus:ring-blue-200", id="username") }} {% if form.username.errors %}
{% for error in form.username.errors %}

{{ error }}

{% endfor %}
{% endif %}
{{ form.password(class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:border-blue-500 focus:ring focus:ring-blue-200", id="password") }} {% if form.password.errors %}
{% for error in form.password.errors %}

{{ error }}

{% endfor %}
{% endif %}
{{ form.remember_me(class="h-4 w-4 text-blue-600 border-gray-300 rounded focus:ring-blue-500", id="remember_me") }}

Don't have an account? Register here

{% endblock %}