1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| <%@taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
<%@taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
<%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=Cp1252"/>
<title>Authentification</title>
</head>
<body>
<f:view>
<h:form>
Identifiant : <h:inputText value="#{mgr.userID}"/>
<br/>Mot de passe : <h:inputText value="#{mgr.password}"/>
<br/><h:commandButton value="Login" action="#{mgr.loginAction}"/>
</h:form>
</f:view>
</body>
</html> |