13 lines
539 B
Plaintext
13 lines
539 B
Plaintext
|
<%@ 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>
|