Files
aduzuki/views/adhesion/template_parts/prof_infosgenerale.ejs
2026-07-20 16:33:04 +02:00

79 lines
3.1 KiB
Plaintext

<!-- ---------------------------------- -->
<!-- FORMULAIRE de saisie Infos générales -->
<!-- ---------------------------------- -->
<section id="prof_infosgenerale" class="">
<!-- ---------------------------------- -->
<!-- AFFICHAGE DU MAIL SAISIE DANS L'ÉCRAN DE VÉRIFICATION DU MAIL -->
<!-- ---------------------------------- -->
<div>
<p>VOTRE IDENTIFIANT : <span class='identifiant'><%= identifiant %></span></p>
</div>
<!-- ---------------------------------- -->
<!-- SAISIE DES INFORMATIONS -->
<!-- ---------------------------------- -->
<% if (locals.famille) { %>
<div class="explication">
<br><br>
<p><%= famille %></p>
</div>
<% } else { %>
<div class="explication">
<br><br>
<p>Professeur :</p>
</div>
<% } %>
<div class="grid_3inputs">
<div class="input_box input_text input_box_gris">
<label for="adherent_nom">Nom*</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" required>
</div>
<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" 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">
</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" required>
</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" 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" required>
</div>
</div>
<div class="grid_3inputs">
<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" 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">
</div>
</div>
</section>