19 lines
829 B
PHP
19 lines
829 B
PHP
<form action="?page=logon&register=0" method="post">
|
|
<table>
|
|
<tr><th colspan="2" class="top-left-rounded top-right-rounded">Connexion</th></tr>
|
|
<tr>
|
|
<td>Prénom</td>
|
|
<td><input type="text" name="firstName" value="<?php echo isset($_POST['firstName'])?$_POST['firstName']:''; ?>" /></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Nom</td>
|
|
<td><input type="text" name="login" value="<?php echo isset($_POST['login'])?$_POST['login']:''; ?>" /></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="bottom-left-rounded">Mot de passe</td>
|
|
<td class="bottom-right-rounded"><input type="password" name="pass" /></td>
|
|
</tr>
|
|
<tr><th colspan="2" class="blank"><input type="submit" value="Connexion" /></th></tr>
|
|
<tr><td colspan="2" class="rounded"><a href="?page=register">Créer un compte</a></td></tr>
|
|
</table>
|
|
</form> |