<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>
{% block title %}Sulser Group
{% endblock %}
</title>
{% block stylesheets %}
<link href="https://cdnjs.cloudflare.com/ajax/libs/vuetify/2.0.11/vuetify.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/@mdi/font@5.x/css/materialdesignicons.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.4.1/font/bootstrap-icons.css">
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.8/css/intlTelInput.css"
/>
{{ encore_entry_link_tags('app') }}
{% endblock %}
</head>
<body>
{% block navbar %}
{% include 'navbar.html.twig' %}
{% endblock %}
{% block flashes %}
{% for message in app.flashes('success') %}
<div class="alert alert-success">
{{ message }}
</div>
{% endfor %}
{% for message in app.flashes('error') %}
<div class="alert alert-danger">
{{ message }}
</div>
{% endfor %}
{% endblock %}
{% block body %}{% endblock %}
{% block javascripts %}
{{ encore_entry_script_tags('app') }}
<script src="https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.8/js/intlTelInput.min.js"></script>
{% endblock %}
</body>
</html>