1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-06-25 21:37:28 +02:00

Améliorations au niveau de l'inscription

This commit is contained in:
galaxyoyo
2019-08-28 00:28:07 +02:00
parent 8b90877088
commit c3de4a9914
2 changed files with 34 additions and 28 deletions

View File

@ -56,17 +56,20 @@ if (isset($error_message) && $error_message === FALSE) {
<form method="POST">
<input type="hidden" name="submitted" value="true" />
<table>
<table style="width: 100%;">
<tr>
<td><label for="email">E-mail :</label></td>
<td><input type="email" id="email" name="email" value="<?php if (isset($email)) echo $email ?>" /></td>
<td style="width: 30%;"><label for="email">E-mail :</label></td>
<td style="width: 70%;"><input style="width: 100%;" type="email" id="email" name="email" value="<?php if (isset($email)) echo $email ?>" /></td>
</tr>
<tr>
<td><label for="password">Mot de passe :</label></td>
<td><input type="password" id="password" name="password" /></td>
<td><input style="width: 100%;" type="password" id="password" name="password" /></td>
</tr>
<tr>
<td colspan="2"><input type="submit" /></td>
<td colspan="2"><a href="<?= $URL_BASE ?>/connexion/mdp_oublie">Mot de passe oublié ?</a></td>
</tr>
<tr>
<td colspan="2"><input style="width: 100%;" type="submit" value="Se connecter" /></td>
</tr>
</table>
</form>