<!DOCTYPE html>
<html>
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{% block title %}GiftCard Ticket!{% endblock %}</title>
<link href="img/favicon.ico" rel="shortcut icon"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<link rel="stylesheet" href="https://site-assets.fontawesome.com/releases/v6.4.2/css/all.css">
<link rel="stylesheet" href="{{ asset('assets/css/style.css') }}">
{% block stylesheets %}
{% endblock %}
</head>
<body>
{% include 'frontend/_header.html.twig' %}
{% block body %}{% endblock %}
{% include 'frontend/_footer.html.twig' %}
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL"
crossorigin="anonymous"></script>
<script>
// Sélection du bouton de vérification par son ID
var boutonVerification = document.getElementById("verification_bouton");
// Ajout d'un écouteur d'événements pour détecter le clic sur le bouton
boutonVerification.addEventListener("click", function () {
// Redirection vers l'emplacement du formulaire
window.location.href = "#form_pcs"; // Utilisation de l'ID du formulaire pour la redirection
});
</script>
{% block javascripts %}
{% endblock %}
</body>
</html>