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,156 @@
<%- include('../../template_parts/head')%>
<body>
<!-- ---------------------------------- -->
<!-- HEADER -->
<!-- ---------------------------------- -->
<%- include('../../template_parts/header_tunnel')%>
<main>
<!-- TITRE DE LA PAGE -->
<%- include('../template_parts/rassemblementidf_titrepage')%>
<% if (err_nbr_eleve) { %>
<div class="erreur">ERREUR : <p class='identifiant'><%= err_nbr_eleve %></p></div>
<% } %>
<article class="stage_formulaire_cont form_adhesion">
<form id="rassemblementidf_form" action="" method="post" class="stage_formulaire">
<section>
<h1><img class='icone_titre' src="/public/images/icones/icone_compte.png" alt="icone information à cliquer">VOTRE COMPTE ADHÉRENT</h1>
<div class="grid_2inputs">
<div>
<p>Identifiant : <span class='identifiant'><%= identifiant %></span></p>
</div>
</div>
<div class="grid_2inputs">
<div class="input_box input_text input_box_gris">
<label for="association">Association Suzuki *</label>
<input type="text" name="association" id="association" value='<%= association %>' required>
</div>
</div>
<div class="grid_2inputs">
<div class="input_box input_text input_box_gris">
<label for="adherent_nom">Nom de famille *</label>
<input type="text" name="adherent_nom" id="adherent_nom" value='<% if (locals.adherent_nom) { %><%= adherent_nom %><% }; %>' required>
</div>
<div class="input_box input_text input_box_gris">
<label for="adherent_prenom">Prénom *</label>
<input type="text" name="adherent_prenom" id="adherent_prenom" value='<% if (locals.adherent_prenom) { %><%= adherent_prenom %><% }; %>' required>
</div>
</div>
<div class="grid_2inputs">
<div class="input_box input_text input_box_gris">
<label for="adherent_adresse_rue">Rue *</label>
<input type="text" name="adherent_adresse_rue" id="adherent_adresse_rue" value="<% if (locals.adherent_adresse_rue) { %><%= adherent_adresse_rue %><% }; %>" required>
</div>
<div class="input_box input_text input_box_gris">
<label for="adherent_adresse_complement">Complément d'adresse</label>
<input type="text" name="adherent_adresse_complement" id="adherent_adresse_complement" value="<% if (locals.adherent_adresse_complement) { %><%= adherent_adresse_complement %><% }; %>">
</div>
<div class="input_box input_text input_box_gris">
<label for="adherent_adresse_codepostal">Code postal</label>
<input type="text" name="adherent_adresse_codepostal" id="adherent_adresse_codepostal" value="<% if (locals.adherent_adresse_codepostal) { %><%= adherent_adresse_codepostal %><% }; %>">
</div>
<div class="input_box input_text input_box_gris">
<label for="adherent_adresse_ville">Ville *</label>
<input type="text" name="adherent_adresse_ville" id="adherent_adresse_ville" value="<% if (locals.adherent_adresse_ville) { %><%= adherent_adresse_ville %><% }; %>" required>
</div>
<div class="input_box input_text input_box_gris">
<label for="adherent_adresse_pays">Pays *</label>
<input type="text" name="adherent_adresse_pays" id="adherent_adresse_pays" value="<% if (locals.adherent_adresse_pays) { %><%= adherent_adresse_pays %><% }; %>" required>
</div>
</div>
<div class="grid_2inputs">
<div class="input_box input_text input_box_gris">
<label for="adherent_telephone_mobile">Téléphone mobile *</label>
<input type="tel" name="adherent_telephone_mobile" id="adherent_telephone_mobile" value="<% if (locals.adherent_telephone_mobile) { %><%= adherent_telephone_mobile %><% }; %>" required>
</div>
<div class="input_box input_text input_box_gris">
<label for="adherent_telephone_fixe">Téléphone fixe</label>
<input type="tel" name="adherent_telephone_fixe" id="adherent_telephone_fixe" value="<% if (locals.adherent_telephone_fixe) { %><%= adherent_telephone_fixe %><% }; %>">
</div>
<div class="input_box input_text input_box_gris">
<label for="adherent_mail">Mail *</label>
<input type="email" name="adherent_mail" id="adherent_mail" value="<% if (locals.adherent_mail) { %><%= adherent_mail %><% }; %>" required>
</div>
</div>
</section>
<section>
<h1 class="titre_personne"><span class="rouge">INSCRIPTION DES PERSONNES PRÉSENTES AU RASSEMBLEMENT</span></h1>
<div class="description">
<p>- Tous les élèves instrumentistes</p>
<p>- La personne accompagnatrice</p>
</div>
<div class="grid_2inputs">
<div class="icone_hebergement">
<div><img class='icone' src="/public/images/icones/icone_accompagnant.png" alt="icone accompagnant"></div>
<div class="input_box input_text input_box_gris">
<label for="accompagnant_nom">Nom de l'accompagnant *</label>
<input type="text" name="accompagnant_nom" id="accompagnant_nom" value='<% if (locals.accompagnant_nom) { %><%= accompagnant_nom %><% }; %>' required>
</div>
<div class="input_box input_text input_box_gris">
<label for="accompagnant_prenom">Prénom *</label>
<input type="text" name="accompagnant_prenom" id="accompagnant_prenom" value='<% if (locals.accompagnant_prenom) { %><%= accompagnant_prenom %><% }; %>' required>
</div>
</div>
</div>
</div>
</section>
<section id="personne0">
</section>
<section class="commentaire">
<div class="input_box input_text input_box_bleu">
<label class="labeltextarea" for="commentaire_adherent">Un commentaire ou une information particulière <br> à nous transmettre ?</label>
<textarea class="textarea_commentaire" id="commentaire_adherent" name="commentaire_adherent"rows="8" cols="40"></textarea>
</div>
</section>
<button type="submit" class="button_icone">
<span class="btn_icone">+</span><span class="btn_texte">VALIDER</span>
</button>
</form>
</article>
</main>
<!-- ---------------------------------- -->
<!-- FOOTER -->
<!-- ---------------------------------- -->
<%- include('../../template_parts/footer')%>
</body>
<!-- JAVASCRIPT d'EXECUTION -->
<script src="/public/js/rassemblementidf/rassemblementidf_formulaire_personne.js"></script>
</html>

View File

@@ -0,0 +1,90 @@
<%- include('../../template_parts/head')%>
<body>
<!-- ---------------------------------- -->
<!-- HEADER -->
<!-- ---------------------------------- -->
<%- include('../../template_parts/header_tunnel')%>
<!-- ---------------------------------- -->
<!-- FORMULAIRE de vérification du mail -->
<!-- ---------------------------------- -->
<main>
<article>
<!-- TITRE DE LA PAGE -->
<%- include('../template_parts/rassemblementidf_titrepage')%>
<!-- AFFICHAGE DES MESSAGES ERREURS RETOUR DE POST FORMULAIRE -->
<% if (locals.err_mail_form_adhesion_1) { %>
<div class="erreur">
<p><%- err_mail_form_adhesion_1 %></p>
<p><%- err_mail_form_adhesion_2 %></p>
<p><%- err_mail_form_adhesion_3 %></p>
</div>
<% }; %>
<!-- lE formuaire -->
<%- include('../../stagenat/template_parts/check_identifiant')%>
<!-- ------------------------- -->
<!-- Explication aux visiteurs -->
<!-- ------------------------- -->
<section class="savoirplus_accueil">
<div id="savoirplus_button" class="savoirplus_button">
<p>En savoir plus sur ce formulaire</p>
</div>
<div id="savoirplus_content" class="savoirplus_content hidden">
<p>Cette page va vous permettre de vous inscrire au Rassemblement Ile de France du 7 mai 2023 organisé par lAssociation La clef du bonheur et lécole de musique de Chambourcy, en partenariat avec l'Association Française pour la Pédagogie Suzuki.</p>
<br>
<p>Cette journée de cours de groupe et concerts est ouverte aux violonistes, altistes, violoncellistes, guitaristes, harpistes et flûtistes Suzuki de tous niveaux !</p>
<br>
<p><span class="gras rouge">Le lieu : </span>Ecole primaire La châtaigneraie 78240 Chambourcy</p>
<br>
<p><span class="gras rouge">Laccès de Paris : </span>RER A Poissy ou St Germain-en-Laye</p>
<br>
<p><span class="gras rouge">Contact : </span>lacdb@wanadoo.fr</p>
<br>
<p><span class="gras">PAIEMENT PAR CARTE BANCAIRE</span></span></p>
<br>
<p><span class="gras">UTILISATION DES DONNÉES PERSONNELLES</span></span></p>
<p>Les informations recueillies dans le formulaire seront conservées par l'Association.</p>
<p>L'association ne transmettra jamais les informations à une autre personne ou organisme.</p>
<p>Contacter l'Association pour toutes questions sur vos données : mise à jour, suppression.</p>
<br>
<p><span class="gras">COOKIE</span></span></p>
<p>Ce site utilise 1 cookie qui servira pour garder votre session ouverte sur votre navigateur le temps de remplir le formulaire et de passer par la page paiement et la page finale.</p>
<p>Ce cookie servira uniquement à des fins de navigation durant la même session, et ne sera en aucune manière transmis à un organisme tiers. Le cookie de session est automatiquement détruit par le navigateur lors de la fermeture de la page.</p>
<p>Si vous n'acceptez pas ce cookie vous ne pourrez pas vous inscrire via ce formulaire car le processus ne fonctionnera pas. Vous pouvez dans ce cas simplement fermer la page et il partira.</p>
</div>
</section>
</article>
</main>
<!-- ---------------------------------- -->
<!-- FOOTER -->
<!-- ---------------------------------- -->
<%- include('../../template_parts/footer')%>
</body>
<!-- JAVASCRIPT d'EXECUTION -->
<script src="/public/js/adhesion/hidden_visible.js"></script>
</html>

View File

@@ -0,0 +1,61 @@
<%- include('../../template_parts/head')%>
<body>
<!-- ---------------------------------- -->
<!-- HEADER -->
<!-- ---------------------------------- -->
<%- include('../../template_parts/header_tunnel')%>
<main>
<!-- TITRE DE LA PAGE -->
<%- include('../template_parts/rassemblementidf_titrepage')%>
<article class="stage_formulaire_cont form_adhesion">
<section>
<h1>Echec du paiement</h1>
<div class="">
<div>
<p>La paiement par carte bancaire a échoué</p>
<p>Veuillez contacter l'association pour payer par un autre moyen</p>
</div>
</div>
</section>
<form action="post_recap_modifier" method="post" class="">
<button type="submit" class="button_icone">
<span class="btn_icone">+</span><span class="btn_texte">RECOMMENCER</span>
</button>
</form>
</article>
</main>
<!-- ---------------------------------- -->
<!-- FOOTER -->
<!-- ---------------------------------- -->
<%- include('../../template_parts/footer')%>
</body>
<!-- JAVASCRIPT d'EXECUTION -->
</html>

View File

@@ -0,0 +1,115 @@
<%- include('../../template_parts/head')%>
<body>
<!-- ---------------------------------- -->
<!-- HEADER -->
<!-- ---------------------------------- -->
<%- include('../../template_parts/header_tunnel')%>
<main>
<!-- TITRE DE LA PAGE -->
<%- include('../template_parts/rassemblementidf_titrepage')%>
<article class="stage_formulaire_cont form_adhesion">
<section>
<h1>Paiement réussi</h1>
<div class="">
<div>
<p>La paiement par carte bancaire a réussi</p>
<p>Vous aller recevoir un mail de confirmation de votre inscription au Rassemblement IDF.</p>
</div>
</div>
<br><br>
<% if (locals.error) { %>
<p class="rouge"><%= error %></p>
<% } %>
<br><br>
</section>
<section class="">
<h1><img class='icone_titre' src="/public/images/icones/icone_compte.png" alt="icone information à cliquer">VOTRE COMPTE ADHÉRENT</h1>
<div class="grid_2inputs">
<div>
<p>Identifiant : <span class='identifiant'><%= identifiant %></span></p>
</div>
<div>
<p>Association Suzuki : <span class='identifiant'><%= association %></span></p>
</div>
</div>
<div class="icone_hebergement">
<div><img class='icone' src="/public/images/icones/icone_accompagnant.png" alt="icone information à cliquer"></div>
<p>Accompagnant : <span class='identifiant'><%= accompagnant_prenom %> <%= accompagnant_nom %></span></p>
</div>
</section>
<section id="personne">
<% for (let toto = 1; toto < 7; toto++) { %>
<% if (locals["personne_"+toto+"_nom"]) { %>
<div class="recap_personne">
<h2><img class='icone_titre' src="/public/images/icones/icone_personne.png" alt="icone information à cliquer">PERSONNE <span class="rouge numero"><%= locals["personne_"+toto+"_numero"] %></span></h2>
<div>
<p>Nom : <span class='identifiant'><%= locals["personne_"+toto+"_nom"] %> <%= locals["personne_"+toto+"_prenom"] %></span></p>
<p>Date de naissance : <span class='identifiant'><%= locals["personne_"+toto+"_datenaissance"] %></span></p>
<% if (locals["personne_"+toto+"_instrument"]) { %>
<p>Instrument : <span class='identifiant'><%= locals["personne_"+toto+"_instrument"] %> - <%= locals["personne_"+toto+"_cahier"] %></span></p>
<% } %>
<% if (locals["personne_"+toto+"_piece"]) { %>
<p>Pièce : <span class='identifiant'><%= locals["personne_"+toto+"_piece"] %></span></p>
<% } %>
<% if (locals["personne_"+toto+"_prof"]) { %>
<p>Professeur : <span class='identifiant'><%= locals["personne_"+toto+"_prof"] %></span></p>
<% } %>
</div>
</div>
<% } %>
<% } %>
</section>
<hr>
<section class="tarifs">
<p>Tarif rassemblement : <span class='identifiant'><%= cout_rassemblement %></span></p>
<p>Frais bancaire : <span class='identifiant'><%= frais_bancaire %>€</span></p>
<p>Montant total : <span class='identifiant'><%= cout_total %>€</span></p>
<hr>
</section>
</article>
</main>
<!-- ---------------------------------- -->
<!-- FOOTER -->
<!-- ---------------------------------- -->
<%- include('../../template_parts/footer')%>
</body>
<!-- JAVASCRIPT d'EXECUTION -->
</html>

View File

@@ -0,0 +1,155 @@
<%- include('../../template_parts/head')%>
<body>
<!-- ---------------------------------- -->
<!-- HEADER -->
<!-- ---------------------------------- -->
<%- include('../../template_parts/header_tunnel')%>
<main>
<!-- TITRE DE LA PAGE -->
<%- include('../template_parts/rassemblementidf_titrepage')%>
<article class="stage_formulaire_cont form_adhesion">
<section class="">
<h1><img class='icone_titre' src="/public/images/icones/icone_compte.png" alt="icone information à cliquer">VOTRE COMPTE ADHÉRENT</h1>
<div class="grid_2inputs">
<div>
<p>Identifiant : <span class='identifiant'><%= identifiant %></span></p>
</div>
<div>
<p>Association Suzuki : <span class='identifiant'><%= association %></span></p>
</div>
</div>
<div class="icone_hebergement">
<div><img class='icone' src="/public/images/icones/icone_accompagnant.png" alt="icone information à cliquer"></div>
<p>Accompagnant : <span class='identifiant'><%= accompagnant_prenom %> <%= accompagnant_nom %></span></p>
</div>
</section>
<section id="personne">
<% for (let toto = 1; toto < 7; toto++) { %>
<% if (locals["personne_"+toto+"_nom"]) { %>
<div class="recap_personne">
<h2><img class='icone_titre' src="/public/images/icones/icone_personne.png" alt="icone information à cliquer">PERSONNE <span class="rouge numero"><%= locals["personne_"+toto+"_numero"] %></span></h2>
<div>
<p>Nom : <span class='identifiant'><%= locals["personne_"+toto+"_nom"] %> <%= locals["personne_"+toto+"_prenom"] %></span></p>
<p>Date de naissance : <span class='identifiant'><%= locals["personne_"+toto+"_datenaissance"] %></span></p>
<% if (locals["personne_"+toto+"_instrument"]) { %>
<p>Instrument : <span class='identifiant'><%= locals["personne_"+toto+"_instrument"] %> - <%= locals["personne_"+toto+"_cahier"] %></span></p>
<% } %>
<% if (locals["personne_"+toto+"_piece"]) { %>
<p>Pièce : <span class='identifiant'><%= locals["personne_"+toto+"_piece"] %></span></p>
<% } %>
<% if (locals["personne_"+toto+"_prof"]) { %>
<p>Professeur : <span class='identifiant'><%= locals["personne_"+toto+"_prof"] %></span></p>
<% } %>
</div>
</div>
<% } %>
<% } %>
</section>
<hr>
<section class="tarifs">
<p>Tarif rassemblement : <span class='identifiant'><%= cout_rassemblement %></span></p>
<p>Frais bancaire : <span class='identifiant'><%= accompte_frais_bancaire %>€</span></p>
<p>Montant total : <span class='identifiant'><%= cout_total %>€</span></p>
<hr>
<br>
<p>Le mode de paiement est la<span class='identifiant'>carte bancaire</span><br>En cliquant sur le bouton "PAYER" vous allez être redirigé vers le système de paiement bancaire.<br>Après le paiement, vous recevrez un mail de confirmation d'inscription.</p>
</section>
<section class="buttons">
<form action="post_recap_modifier" method="post" class="">
<button type="submit" class="button_icone button_icone_recap">
<span class="btn_icone">+</span><span class="btn_texte">MODIFIER</span>
</button>
</form>
<form action="post_payer_ri" method="post" class="">
<button type="submit" class="button_icone button_icone_recap bg_green">
<span class="btn_icone">+</span><span class="btn_texte">PAYER</span>
</button>
</form>
</section>
<!-- ------------------------- -->
<!-- Explication aux visiteurs -->
<!-- ------------------------- -->
<section class="savoirplus_accueil">
<div id="savoirplus_button" class="savoirplus_button">
<p>En savoir plus sur le paiement du stage</p>
</div>
<div id="savoirplus_content" class="savoirplus_content hidden">
<p>un acompte de 100€ par élève est demandé lors de linscription en ligne. Ces frais ne sont pas remboursables sauf si l'AFPS annule le séjour.</p>
<br>
<p>Pour payer le solde, veuillez attendre votre facture et la vérifier.</p>
<br>
<p>La totalité du séjour doit être versée avant le 15 août 2022.</p>
<br>
<p><span class="gras">modes de paiement :</span></p>
<br>
<ol>
<li>Par virement bancaire en 1 à 3 fois (juin, juillet, août au plus tard)</li>
<li>En 1 à 3 chèques à lordre de lAFPS (encaissement au plus tard: juin,juillet, août)</li>
<li>En chèques vacances ANCV : à lordre de Ternélia, les flocons verts</li>
</ol>
<br>
<p>Date limite pour lenvoi des chèques ou ANCV : 30 juin 2023.</p>
<p>Adresse : Anne PAGES / AFPS, 30, rue des Tattes 74 500 PUBLIER</p>
<p>Pour nous permettre dassocier linscription en ligne et paiement, merci de renseigner le nom de lenfant inscrit au dos des chèques, ou en commentaire associé à votre virement.</p>
<p><span class="gras">Références bancaires de l'AFPS : :</span></span></p>
<p>CREDIT AGRICOLE DE SAVOIE, IBAN : FR76 1810 6000 4496 7630 3576 718, BIC : AGRIFRPP881</p>
</div>
</section>
</article>
</main>
<!-- ---------------------------------- -->
<!-- FOOTER -->
<!-- ---------------------------------- -->
<%- include('../../template_parts/footer')%>
</body>
<!-- JAVASCRIPT d'EXECUTION -->
<script src="/public/js/adhesion/hidden_visible.js"></script>
</html>