mirror of
https://gitlab.com/animath/si/plateforme.git
synced 2025-06-25 13:37:25 +02:00
Utilisation des nouvelles classes, amélioration du code
This commit is contained in:
@ -5,9 +5,7 @@ if (isset($error_message) && $error_message === FALSE) {
|
||||
?>
|
||||
Votre inscription est validée ! Merci désormais de confirmer votre boîte mail pour valider votre adresse.
|
||||
<?php } else if (isset($_SESSION["user_id"])) { ?>
|
||||
|
||||
<h2>Vous êtes déjà connecté !</h2>
|
||||
|
||||
<?php } else { ?>
|
||||
|
||||
<form method="POST">
|
||||
@ -56,7 +54,7 @@ if (isset($error_message) && $error_message === FALSE) {
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="country">Pays :</label></td>
|
||||
<td><input style="width: 100%;" type="text" id="country" name="country" value="<?php echo isset($_POST["country"]) ? $_POST["country"] : "France" ?>" required /></td>
|
||||
<td><input style="width: 100%;" type="text" id="country" name="country" value="<?= isset($_POST["country"]) ? $_POST["country"] : "France" ?>" required /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="phone_number">Numéro de téléphone :</label></td>
|
||||
|
Reference in New Issue
Block a user