root/DSeTa/DiscoveryPHI/src/main/webapp/Login.jsp @ 675e977d
2e0a7cb1 | Sylvain L. Sauvage | <%@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>
|
|||
96454bcd | Sylvain L. Sauvage | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
|
|
2e0a7cb1 | Sylvain L. Sauvage | <title>DS Access Control Center</title>
|
|
<link rel="stylesheet" type="text/css" href="style/style_DS.css" />
|
|||
</head>
|
|||
<body>
|
|||
<h2>DS Access Control Center</h2>
|
|||
<%
|
|||
675e977d | Rémy Ménard | if (request.getAttribute("message") != null) {
|
|
String message = (String) request.getAttribute("message");
|
|||
message = message.replaceAll("<", "<");
|
|||
message = message.replaceAll(">", ">");
|
|||
2e0a7cb1 | Sylvain L. Sauvage | %>
|
|
675e977d | Rémy Ménard | <div style="color:red;text-align:center;font-weight:bold;"><%= message %></div>
|
|
2e0a7cb1 | Sylvain L. Sauvage | <%
|
|
}
|
|||
%>
|
|||
<div id="logForm">
|
|||
8fd1d584 | Rémy Ménard | <form method="post" action="RootAccountAuth?action=login">
|
|
2e0a7cb1 | Sylvain L. Sauvage | <div><input type="image" src="./pics/login.jpg"/></div>
|
|
</form>
|
|||
</div>
|
|||
</body>
|
|||
</html>
|