<?php if(getGroupe($_SESSION['Login'])!=1) { header("Location: accueil.php"); } $groupes = getGroupes(); ?> <div class="row"> <div class="col-6 col-md-6 offset-md-3 offset-3"> <br/> <h1 style="margin-bottom:20px; border-bottom:1px solid #CCC; padding-bottom:20px;"><i class="fas fa-user-plus"></i> Créer un compte</h1> <form action="inscription.php" method="post"> <table class="table table-striped table-bordered"> <tbody> <tr> <td>Nom : </td> <td><input type="text" name="nom" placeholder="Entrez votre nom" required="true" /></td> </tr> <tr> <td>Prénom : </td> <td><input type="text" name="prenom" placeholder="Entrez votre prénom" required="true" /></td> </tr> <tr> <td>Groupe : </td> <td> <select id="groupe" name="groupe" required /> <option> </option> <?php foreach($groupes as $groupe) { $id = $groupe['id']; $nom = $groupe['nom']; echo "<option value=$id>$nom</option>"; } ?> </select> </td> </tr> <tr> <td>Identifiant : </td> <td><input type="text" name="id" placeholder="Entrez votre identifiant" maxlength="30" required="true" /></td> </tr> <tr> <td>Mot de passe :</td> <td><input type="password" name="pass1" placeholder="Entrez votre mot de passe" required="true" /></td> </tr> <tr> <td>Confirmer mot de passe :</td> <td><input type="password" name="pass2" placeholder="Entrez votre mot de passe" required="true" /></td> </tr> </tbody> </table> <input type="submit" class="btn btn-dark btn-lg btn-block" style="margin-top:20px; margin-bottom:20px;" value="Ajouter"/> <br/> </form> </div> </div>