index.jsp
1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>
<%@ page import="it.softecspa.portal.Parameters"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<%
Parameters parameters = Parameters.getInstance();
String title = parameters.getChannelInfo().getApplicationTitle();
%>
<head>
<title>Test page</title>
<meta http-equiv="expires" content="-1">
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<style>
HTML,BODY {
margin-top: 5px;
margin-left: 5px;
margin-right: 5px;
margin-bottom: 5px;
/* http://www.google.com/fonts */
font-family: 'Source Sans Pro', Frutiger, Arial, Helvetica, sans-serif;
/* font-family: Frutiger, Arial, Helvetica, sans-serif; */
font-size: 14px;
font-weight: 400;
background-color: white;
color: black;
height: 100%
}
.tabella {border:solid 1px #DDDDEE; color:#2b2b2b; }
.cella {padding:5px;color:#2b2b2b; background-color:#DDDDEE; font-face:verdana; font-size:14px;}
.cellaIntestazione {padding:5px;color:#2b2b2b; background-color:#DDDDEE; font-face:verdana; font-size:14px; font-weight:bold;}
</style>
</head>
<body>
<div id="main">
<a href="proxy-services/statement">Click here</a> to check if system is working!
</div>
</body>
</html>