51 lines
1.5 KiB
Plaintext
51 lines
1.5 KiB
Plaintext
<%- include('../../template_parts/head')%>
|
|
|
|
<body>
|
|
<%- include('../../template_parts/header_tunnel')%>
|
|
|
|
<main>
|
|
|
|
<article></article>
|
|
|
|
<!-- TITRE DE LA PAGE -->
|
|
<%- include('../template_parts/adhesion_titrepage')%>
|
|
|
|
|
|
|
|
|
|
<!-- ---------------------------------- -->
|
|
<!-- CHOIX -->
|
|
<!-- - FAMILLE -->
|
|
<!-- - OBSERVATEUR -->
|
|
<!-- ---------------------------------- -->
|
|
|
|
|
|
<form action="" method="post" class="form_adhesion">
|
|
|
|
<div class="grid_2inputs">
|
|
<div class="input_box input_text input_box_bleu">
|
|
<label for="adhesion_choix">Type d'adhésion</label>
|
|
<select id="adhesion_choix" name="adhesion_choix" required onchange="this.options[this.selectedIndex].value && (window.location = this.options[this.selectedIndex].value);">
|
|
<option value="" selected></option>
|
|
<option value="/inscription/adhesion_famille">Enfants apprenant avec la pédagogie Suzuki</option>
|
|
<option value="/inscription/adhesion_observateur">Observateur</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
|
|
</form>
|
|
|
|
|
|
|
|
|
|
</article>
|
|
|
|
</main>
|
|
|
|
</body>
|
|
|
|
<!-- JAVASCRIPT d'EXECUTION -->
|
|
<script src="/public/js/adhesion/adhesion_choix.js"></script>
|
|
|
|
|
|
<%- include('../../template_parts/footer')%> |