{# # Login Page #} {% extends 'auth/base-auth.twig' %} {% set title = 'Login' %} {% block content %} {# Logo and Title #}

Welcome Back

Sign in to access your account

{# Success Alert #} {% if flash.success is defined %}
{{ flash.success }}
{% endif %} {# Error Alert #} {% if flash.error is defined %}
{{ flash.error }}
{% endif %} {# Login Form #}
{{ csrf_field() }} {# Username Field #}
{# Password Field #}
{# Remember Me #}
Forgot password?
{# CAPTCHA Widget #} {% include 'auth/_captcha-widget.twig' %} {# Submit Button #}
{% if registrationEnabled|default(false) %} {# Sign Up Link #}

Don't have an account? Create Account

{% endif %} {% endblock %} {% block scripts %} {% endblock %}