<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>{% block title %}Formulaire Alignoscope{% endblock %}</title>
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 128 128%22><text y=%221.2em%22 font-size=%2296%22>⚫️</text><text y=%221.3em%22 x=%220.2em%22 font-size=%2276%22 fill=%22%23fff%22>sf</text></svg>">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
{% block stylesheets %}
<link rel="stylesheet" href="/assets/css/bootstrap/bootstrap.min.css">
<!-- Font Awesome 6 -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<!-- Custom Style -->
<link rel="stylesheet" href="/assets/css/style.css">
<!-- responsive -->
<link rel="stylesheet" href="/assets/css/responsive.css">
<!-- animation -->
<link rel="stylesheet" href="/assets/css/animation.css">
<style>
.input-text {
background-color: var(--secondary-color);
width: 100%;
resize: none;
border: solid 2px transparent;
padding: 5px 5px;
transition: 0.5s;
margin-bottom: 20px;
}
.rating-reveal{
padding-bottom: 12px;
padding-top: 12px;
}
</style>
{% endblock %}
{% block javascripts %}
<!-- Bootstrap 5 -->
<script src="/assets/js/bootstrap/bootstrap.min.js"></script>
<!-- jQuery -->
<script src="/assets/js/jQuery/jquery-3.6.4.min.js"></script>
<!-- My JS -->
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
<script src="/assets/js/custom.js"></script>
{% endblock %}
</head>
<body>
{% block body %}{% endblock %}
</body>
</html>