<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>{% block title %}User area{% endblock %}</title>
{% block stylesheets %}
{% for stylesheet in sonata_config.getOption('stylesheets', []) %}
<link rel="stylesheet" href="{{ asset(stylesheet) }}">
{% endfor %}
<link rel="stylesheet" href="{{ asset('css/bundles/fos_user_bundle.css') }}">
{% endblock %}
</head>
<body>
{% if app.request.hasPreviousSession %}
{% for type, messages in app.session.flashbag.all() %}
{% for message in messages %}
<div class="alert alert-{{ type }}">
{{ message }}
</div>
{% endfor %}
{% endfor %}
{% endif %}
<div>
{% block fos_user_content %}
{% endblock fos_user_content %}
</div>
</body>
</html>