{% extends 'layout/base.html.twig' %} {% block nav %} {% include 'layout/navbar.html.twig'%} {% endblock %} {% block title %}Log in! {% endblock %} {% block body %}
{% if error %}
{{ error.messageKey|trans(error.messageData, 'security') }}
{% endif %} {% if app.user %}
You are logged in as {{ app.user.username }}, Logout
{% endif %}
{% endblock %}