source: EDIS/trunk/java/tracking-server-main/src/main/webapp/login/loginerrordisplay.jsp@ 1227

Last change on this file since 1227 was 1227, checked in by George Lilly, 13 years ago

initial load of EDIS 1.0

File size: 993 bytes
Line 
1<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2//EN">
2
3<%@ page language="java" %>
4
5<HTML><HEAD>
6
7<!--
8
9 *
10
11 * @author Infrastructure & Security Service
12
13 * @version 1.0.1.002
14
15 * -->
16
17<TITLE>Login Error</TITLE></HEAD>
18
19<BODY>
20
21<%
22
23
24
25String stringurl = "";
26
27 String errorMessage = (String) session.getAttribute("gov.va.med.authentication.kernel.errormessage");
28
29 if (errorMessage == null) errorMessage = "";
30
31
32
33%>
34
35<!-- TODO: invalidate any login user demographics session object here? -->
36
37<h3>There was a login error detected by the login system:</h3>
38
39 <table width="80%" align="center">
40
41 <tr><td align="left"><p><b><%= errorMessage %></b></p>
42
43 </td></tr></table>
44
45<% session.removeAttribute("gov.va.med.authentication.kernel.errormessage");
46
47 session = request.getSession(false);
48
49 stringurl = request.getContextPath()+"/login/login.jsp"+"?relogin=true";
50
51
52
53
54
55
56
57%>
58
59<p><a href="<%= stringurl %>">Try login again.</a></p>
60
61</BODY></HTML>
62
Note: See TracBrowser for help on using the repository browser.