This commit is contained in:
julliechaumard
2023-02-28 01:15:30 +01:00
parent e09ebe2d92
commit dd49ba357b
151 changed files with 17859 additions and 0 deletions

View File

@@ -0,0 +1,56 @@
<%- include('../../template_parts/head')%>
<body>
<%- include('../../template_parts/header_tunnel')%>
<main>
<article></article>
<!-- TITRE DE LA PAGE -->
<%- include('../template_parts/adhesion_titrepage')%>
<form action="" method="post" class="form_adhesion">
<!-- ---------------------------------- -->
<!-- FAMILLE -->
<!-- FORMULAIRE de saisie Infos générales -->
<!-- ON UTILISE LE MEME QUE CELUI DU PROF -->
<!-- ---------------------------------- -->
<%- include('../template_parts/prof_infosgenerale')%>
<!-- ---------------------------------- -->
<!-- FAMILLE -->
<!-- Ajouter des élèves -->
<!-- ---------------------------------- -->
<%- include('../template_parts/eleves_famille')%>
<!-- ---------------------------------- -->
<!-- BOUTON ENREGISTRER -->
<!-- ---------------------------------- -->
<button type="submit" class="button_icone">
<span class="btn_icone">+</span><span class="btn_texte">PAIEMENT</span>
</button>
<div class="paiement_explication">
<p>En cliquant sur ce bouton vous procèderez au paiement.</p>
<p>Vous ne pourrez plus revenir sur votre adhésion.</p>
</div>
</form>
</article>
</main>
</body>
<!-- JAVASCRIPT d'EXECUTION -->
<script src="/public/js/adhesion/adhesion_prof.js"></script>
<script src="/public/js/adhesion/professeurs.js"></script>
<%- include('../../template_parts/footer')%>