Commit 88aa7969ce268c4c0e06c2a30394cdc47cc872a1
1 parent
7d2d0974
Test
Showing
1 changed file
with
22 additions
and
28 deletions
Show diff stats
site/inscription.php
... | ... | @@ -18,49 +18,43 @@ if(getGroupe($_SESSION['Login'])!=1) |
18 | 18 | |
19 | 19 | <!-- Centre de la page --> |
20 | 20 | <div class="row"> |
21 | - | |
22 | - <!-- Contenu de la page --> | |
23 | - <!-- Connexion --> | |
24 | - <div class="row syst"> | |
25 | - <div class="inscritpion"> | |
26 | - <?php | |
27 | - if (notAMember($_POST["id"])) | |
21 | + <div class="inscritpion"> | |
22 | + <?php | |
23 | + if (notAMember($_POST["id"])) | |
24 | + { | |
25 | + if($_POST["pass1"]==$_POST["pass2"]) | |
28 | 26 | { |
29 | - if($_POST["pass1"]==$_POST["pass2"]) | |
27 | + if(inscription($_POST["id"], $_POST["pass1"], $_POST["nom"], $_POST["prenom"], $_POST["groupe"])) | |
30 | 28 | { |
31 | - if(inscription($_POST["id"], $_POST["pass1"], $_POST["nom"], $_POST["prenom"], $_POST["groupe"])) | |
32 | - { | |
33 | - $retour = "Nouveau compte créé avec succès "; | |
34 | - $color = "alert-success"; | |
35 | - } | |
36 | - else | |
37 | - { | |
38 | - $retour = "Echec de la création du compte !"; | |
39 | - $color = "alert-danger"; | |
40 | - } | |
29 | + $retour = "Nouveau compte créé avec succès "; | |
30 | + $color = "alert-success"; | |
41 | 31 | } |
42 | 32 | else |
43 | 33 | { |
44 | - $retour = "Les 2 mots de passe ne sont pas identiques !"; | |
34 | + $retour = "Echec de la création du compte !"; | |
45 | 35 | $color = "alert-danger"; |
46 | 36 | } |
47 | 37 | } |
48 | 38 | else |
49 | 39 | { |
50 | - $retour = "Le compte existe déjà !"; | |
40 | + $retour = "Les 2 mots de passe ne sont pas identiques !"; | |
51 | 41 | $color = "alert-danger"; |
52 | 42 | } |
53 | - ?> | |
54 | - <div class="col-6 col-md-6 offset-3 offset-md-3" style="margin-top:70px;"> | |
55 | - <br/> | |
56 | - <div class="alert <?php echo $color;?>" role="alert"> | |
57 | - <?php echo $retour;?> | |
58 | - <meta http-equiv="Refresh" content="5;url=accueil.php" /> | |
59 | - </div> | |
43 | + } | |
44 | + else | |
45 | + { | |
46 | + $retour = "Le compte existe déjà !"; | |
47 | + $color = "alert-danger"; | |
48 | + } | |
49 | + ?> | |
50 | + <div class="col-6 col-md-6 offset-3 offset-md-3" style="margin-top:70px;"> | |
51 | + <br/> | |
52 | + <div class="alert <?php echo $color;?>" role="alert"> | |
53 | + <?php echo $retour;?> | |
54 | + <meta http-equiv="Refresh" content="5;url=accueil.php" /> | |
60 | 55 | </div> |
61 | 56 | </div> |
62 | 57 | </div> |
63 | - <!-- fin connexion --> | |
64 | 58 | </div> |
65 | 59 | <!-- fin contenu de la page --> |
66 | 60 | </div> | ... | ... |