<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>{% block title %}Gestion licences{% endblock %}</title>
{% block stylesheets %}
{{ encore_entry_link_tags('app') }}
{% endblock %}
</head>
<body class="hold-transition login-page">
{% block main %}{% endblock %}
{% block javascripts %}
{{ encore_entry_script_tags('app') }}
{% endblock %}
</body>
<script>
$(document).ready(function () {
{% for message in app.flashes('success') %}
toastr.success('{{ message|escape('js') }}', '', {positionClass: "toast-top-center"});
{% endfor %}
{% for message in app.flashes('error') %}
toastr.error('{{ message|escape('js') }}', '', {positionClass: "toast-top-center"});
{% endfor %}
});
</script>
</html>