Commit 6d917299494e24b16c3ae83279caaad97fa12a5e
1 parent
007d2737
Ajout compte
Showing
3 changed files
with
12 additions
and
1 deletions
Show diff stats
site/accesBase.php
site/formInscription.php
site/inscription.php
... | ... | @@ -26,6 +26,7 @@ if(getGroupe($_SESSION['Login'])!=0) |
26 | 26 | <div class="inscritpion"> |
27 | 27 | <?php |
28 | 28 | $retour = "Nouveau compte créé avec succès "; |
29 | + $color = "alert-success"; | |
29 | 30 | if (notAMember($_POST["id"])){ |
30 | 31 | if($_POST["pass1"]==$_POST["pass2"]){ |
31 | 32 | if(inscription($_POST["id"], $_POST["pass1"], $_POST["nom"], $_POST["prenom"], $_POST["groupe"])) |
... | ... | @@ -36,13 +37,22 @@ if(getGroupe($_SESSION['Login'])!=0) |
36 | 37 | } |
37 | 38 | else |
38 | 39 | $retour = "Echec de la création du compte !"; |
40 | + $color = "alert-danger"; | |
39 | 41 | } |
40 | 42 | else |
41 | 43 | $retour = "Les 2 mots de passe ne sont pas identiques !"; |
44 | + $color = "alert-danger"; | |
42 | 45 | } |
43 | 46 | else{ |
44 | 47 | $retour = "Le compte existe déjà !"; |
48 | + $color = "alert-danger"; | |
45 | 49 | } |
50 | + <div class="col-4 col-md-4 offset-4 offset-md-4" style="margin-top:70px;"> | |
51 | + <br/> | |
52 | + <div class="alert <?php echo $color;?>" role="alert"> | |
53 | + <?php echo $retour;?> | |
54 | + </div> | |
55 | + </div> | |
46 | 56 | ?> |
47 | 57 | </div> |
48 | 58 | </div> | ... | ... |