<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Biopraxia - Extranet</title>
<!-- Tell the browser to be responsive to screen width -->
<meta name="viewport" content="width=device-width, initial-scale=1">
{% include('parts/favicons.html.twig') %}
<link href="https://fonts.googleapis.com/css?family=Ubuntu" rel="stylesheet">
<link rel="stylesheet" href="{{ asset('assets/dist/css/main_base.css') }}">
<link rel="stylesheet" href="{{ asset('assets/dist/css/AdminLTE.css') }}">
<link rel="stylesheet" href="{{ asset('assets/dist/css/main.css') }}">
{% block stylesheets %}{% endblock %}
</head>
<body class="hold-transition login-page">
{% if app.request.hasPreviousSession %}
{% for info in app.session.flashbag.get('info') %}
<div class="container-fluid">
<div class="alert alert-dismissible text-center fade show alert-{{ info.level }}" role="alert">
{{ info.msg }}
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
</div>
{% endfor %}
{% endif %}
<div class="wrapper">
{% block fos_user_content %}
{% endblock fos_user_content %}
</div>
{% include ('parts/footer.html.twig') %}
</body>
</html>