<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" name="viewport" content="user-scalable=no,width=device-width">
<title>{{ easyadmin_config('site_name') }}</title>
{% block head_stylesheets %}
<link rel="stylesheet" href="{{ asset('bundles/easyadmin/app.css') }}">
<style>
:root { --color-primary: {{ easyadmin_config('design.brand_color') }}; }
</style>
{% endblock %}
{% for css_asset in easyadmin_config('design.assets.css') %}
<link rel="stylesheet" href="{{ asset(css_asset) }}">
{% endfor %}
<style>
.center-me {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.form-group label, .form-group legend.col-form-label {
flex: 1;
font-weight: bold;
text-align: left;
}
.card {
background-color: white;
border: 1px solid #ddd;
}
</style>
</head>
<body class="easyadmin new new-aluno easyadmin-content-width-normal easyadmin-sidebar-width-normal">
<div class="" style="">
{% if app.request.hasPreviousSession %}
{% for type, messages in app.session.flashbag.all() %}
{% for message in messages %}
<div class="flash-{{ type }}">
{{ message }}
</div>
{% endfor %}
{% endfor %}
{% endif %}
{% block fos_user_content %}
{% endblock fos_user_content %}
</div>
</body>
</html>