-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnologged.jsp
executable file
·98 lines (76 loc) · 2.93 KB
/
nologged.jsp
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<%@ page language="java" contentType="text/html;charset=UTF-8"%>
<%
if (request.getSession(false) != null)
session.invalidate ();
%>
<html>
<head>
<title>Application Form Tool</title>
<link rel="stylesheet" type="text/css" href="css/portal_style.css" id="portalCss" />
<link rel="shortcut icon" href="img/favicon.ico"/>
</head>
<body id="body">
<div id="portal-container">
<div id="sizer">
<div id="expander">
<table border="0" cellpadding="" cellspacing="5"
id="header-container-adm">
<tr>
<td align="left" valign="top" id="header" width="220px"><a
href="http://www.inab.org" target="_blank"
style="text-decoration: none"> <img src="img/inblogo.gif"
height="90" border="0" /></a></td>
<td align="left" valign="bottom"><a href="http://www.inab.org"
target="_blank" style="text-decoration: none"> <span
class="inblogo">Instituto Nacional de Bioinformática</span> </a></td>
</tr>
</table>
<!-- HERE STARTS THE CENTRAL PART, BOTH THE MENU AND CONTENT AREAS -->
<div id="content-container">
<!-- **************** START CONTENT AREA (REGION b)**************** -->
<div id='regionAdmB'>
<table width="100%" height="30%" cellpadding="1" cellspacing="1" border="0">
<tr><td align="center" valign="middle">
<h1>Application Form Construction and Development Tool</h1>
</td></tr>
</table>
</div> <!-- regionB -->
<!-- ****************** END CONTENT AREA (REGION B) ***************** -->
<!-- ****************** START MENU (LEFT) AREA (REGION A) ***************** -->
<div id='regionAdmA'>
<span style="font-family: Arial, Helvetica, sans-serif;font-size: 12px;">
The user is already logged in and it is not allowed to perform simultaneous
access from different locations.
<p>
<a href="jsp/index.jsp" style="text-decoration:none;color:darkblue;font-size=bolder">
Try again with a different username</a>
</p>
</span>
</div> <!-- region A -->
<!-- ****************** END LEFT MENU AREA (REGION A) ***************** -->
</div> <!-- content-container -->
</div> <!-- expander -->
</div><!-- sizer -->
</div><!-- portal-container -->
<!-- FOOTER AND END OF PAGE -->
<div id="footer-container-adm" class="portal-copyright-adm">Developed at
<a class="portal-copyright-adm" href="http://www.inab.or">INB/CNIO</a><br/>
</div>
</body>
</html>
<!--
<!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>Appform - Login failed</title>
</head>
<body>
The user is already logged and you are not allowed to perform simultaneous
accesses from different IP addresses.
<p>
<a href="jsp/index.jsp">Try again with a different username</a>
</p>
</body>
</html>
-->