root/ETa/EpcisPHI/src/main/webapp/Login.jsp @ 2e0a7cb1
2e0a7cb1 | Sylvain L. Sauvage | <%--
|
|
Document : rootAccountLogPage
|
|||
Created on : 27 févr. 2009, 14:44:46
|
|||
Author : jlemoule
|
|||
--%>
|
|||
<%@page contentType="text/html" pageEncoding="UTF-8"%>
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
|
|||
"http://www.w3.org/TR/html4/loose.dtd">
|
|||
<html>
|
|||
<head>
|
|||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|||
<title>JSP Page</title>
|
|||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
|
|||
<link rel="stylesheet" type="text/css" href="style/style_DS.css" />
|
|||
<script type="text/javascript" src="script/check_form.js"> </script>
|
|||
</head>
|
|||
<body>
|
|||
<h2>EPCIS ACCESS CONTROL CENTER</h2>
|
|||
<%
|
|||
if (request.getParameter("message") != null) {
|
|||
%>
|
|||
<div style="color:red;text-align:center;font-weight:bold;"><%=request.getParameter("message")%></div>
|
|||
<%
|
|||
}
|
|||
%>
|
|||
<div id="logForm">
|
|||
<form method="post" action="RootAccountAuth?action=login" onSubmit="return verifFormLog(this);">
|
|||
<span>login : </span><input class="inputText" type="text" name="login" value="" /><br/>
|
|||
<span>password : </span><input class="inputText" type="password"name="passwd" value="" />
|
|||
<div><input type="image" src="./pics/login.jpg"/></div>
|
|||
</form>
|
|||
</div>
|
|||
</body>
|
|||
</html>
|