<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>{% block title %}Welcome!{% endblock %}</title>
{% block stylesheets %}
{{ encore_entry_link_tags('app') }}
{% endblock %}
</head>
<body>
{% if is_granted('IS_AUTHENTICATED_REMEMBERED') %}
<div class="alert alert-secondary text-right"><a href="{{ path('dashboard') }}">Dashboard</a> | <a href="{{ path('app_logout') }}">Logout</a> </div>
{% for message in app.flashes('success') %}
<div class="alert alert-light" role="alert">
{{ message }}
</div>
{% endfor %}
{% endif %}
{% block body %}{% endblock %}
{% block javascripts %}
{{ encore_entry_script_tags('app') }}
{% endblock %}
</body>
</html>