Skip to content
Snippets Groups Projects
Commit 03f2e488 authored by nicrausaz's avatar nicrausaz
Browse files

style

parent 9db7d2fa
No related branches found
No related tags found
No related merge requests found
...@@ -192,7 +192,7 @@ ...@@ -192,7 +192,7 @@
<label for="telRep1">Téléphone *</label> <label for="telRep1">Téléphone *</label>
<input type="text" name="telRep1" id="telRep1" class="form-control" placeholder="+41 79 123 45 67" value="<?php echo $_SESSION['postedForm']['telRep1'] != '' ? $_SESSION['postedForm']['telRep1'] : ''; ?>"/> <input type="text" name="telRep1" id="telRep1" class="form-control" placeholder="+41 79 123 45 67" value="<?php echo $_SESSION['postedForm']['telRep1'] != '' ? $_SESSION['postedForm']['telRep1'] : ''; ?>"/>
<p>Représentant secondaire:</p> <p class="pt-4">Représentant secondaire:</p>
<label for="genreRep2">Genre</label> <label for="genreRep2">Genre</label>
<select name="genreRep2" id="genreRep2" class="custom-select"> <select name="genreRep2" id="genreRep2" class="custom-select">
<option <?php echo (!isset($_SESSION['postedForm']['genreRep2'])) ? "selected" : ''; ?> disabled> Choisissez un genre</option> <option <?php echo (!isset($_SESSION['postedForm']['genreRep2'])) ? "selected" : ''; ?> disabled> Choisissez un genre</option>
...@@ -252,7 +252,7 @@ ...@@ -252,7 +252,7 @@
</table> </table>
<button type="button" class="btn btn-primary btn-sm mt-3 mb-2" id="addSch">Ajouter une ligne</button> <button type="button" class="btn btn-primary btn-sm mt-3 mb-2" id="addSch">Ajouter une ligne</button>
<div class="form-group"> <div class="form-group mt-3">
<label for="anneeFin">Année de fin de scolarité*</label> <label for="anneeFin">Année de fin de scolarité*</label>
<input type="text" name="anneeFin" id="anneeFin" class="form-control" placeholder="Année de fin de scolarité" value="<?php echo $_SESSION['postedForm']['anneeFin'] != '' ? $_SESSION['postedForm']['anneeFin'] : ''; ?>" maxlength="4" data-required/> <input type="text" name="anneeFin" id="anneeFin" class="form-control" placeholder="Année de fin de scolarité" value="<?php echo $_SESSION['postedForm']['anneeFin'] != '' ? $_SESSION['postedForm']['anneeFin'] : ''; ?>" maxlength="4" data-required/>
<small id="anneeFinError" class="form-text text-muted"></small> <small id="anneeFinError" class="form-text text-muted"></small>
...@@ -292,7 +292,7 @@ ...@@ -292,7 +292,7 @@
<?php }} ?> <?php }} ?>
</table> </table>
<button type="button" class="btn btn-primary btn-sm mt-3 mb-2" id="addPro">Ajouter une ligne</button> <button type="button" class="btn btn-primary btn-sm mt-3 mb-2" id="addPro">Ajouter une ligne</button>
<h5>3.3 Stages</h5> <h5 class="mt-3">3.3 Stages</h5>
<table id="stages"> <table id="stages">
<tr> <tr>
<td> <td>
...@@ -320,7 +320,7 @@ ...@@ -320,7 +320,7 @@
</table> </table>
<button type="button" class="btn btn-primary btn-sm mt-3 mb-2" id="addStage">Ajouter une ligne</button> <button type="button" class="btn btn-primary btn-sm mt-3 mb-2" id="addStage">Ajouter une ligne</button>
<div class="form-group"> <div class="form-group mt-3">
<label>Avez-vous déjà été candidat à l'EPFL ?</label> <label>Avez-vous déjà été candidat à l'EPFL ?</label>
<div class="custom-control custom-radio"> <div class="custom-control custom-radio">
<input type="radio" name="dejaCand" id="dejaCand1" class="custom-control-input" value="false" <?php echo (!isset($_SESSION['postedForm']['dejaCand']) || $_SESSION['postedForm']['dejaCand'] == "false") ? "checked=\"checked\"" : ''; ?>> <input type="radio" name="dejaCand" id="dejaCand1" class="custom-control-input" value="false" <?php echo (!isset($_SESSION['postedForm']['dejaCand']) || $_SESSION['postedForm']['dejaCand'] == "false") ? "checked=\"checked\"" : ''; ?>>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment