Grosse MàJ

This commit is contained in:
olivier
2008-11-25 22:11:16 +01:00
parent 53195fdfcd
commit 3e719157ea
2980 changed files with 343846 additions and 0 deletions

View File

@ -0,0 +1,12 @@
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<c:url var="login" value="/connexion" />
<h1>Authentification</h1>
<p><c:out value="${message}" default="Identifiez-vous :"/></p>
<form method="POST" action="${login}">
<label>Identifiant :</label>
<input name="id" type="text" value="<c:out value="${user.id}"/>"/><br />
<label>Mot de passe : </label>
<input name="password" type="password" value="<c:out value="${user.password}"/>"/><br/>
<input name="ok" type="submit" value="Ok"/>
</form>