1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
| <div id="signin_container" class="signin_container">
<form action="/index.php/guard/login" method="post">
<table class="signin_table">
<tbody>
<tr>
<th><label for="signin_username">Nom d'utilisateur</label></th>
<td><input type="text" name="signin[username]" id="signin_username" /></td>
</tr>
<tr>
<th><label for="signin_password">Password</label></th>
<td><input type="password" name="signin[password]" id="signin_password" /><input type="hidden" name="signin[_csrf_token]" value="01c9e116a75614e74e04228a61562b14" id="signin__csrf_token" /></td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="2">
<input type="submit" value="Se connecter" />
</td>
</tr>
</tfoot>
</table>
</form>
</div> |