Commit 97e20eae by Nilu

Global - App-specific error/notice page

Design - Change <title> to "Talentology - ['message title]"
Design - Alter text styling (see comment below)
Link - Session Timeout - Should be https://app.talentology.com/index.jsp (not https://app.talentology.com/editor/index.jsp?url=/editor/home.jsp) as it is now
parent a98056e1
<%@ page import="oneit.servlets.jsp.*, oneit.servlets.process.*,java.util.*,java.io.*" %>
<%@ page extends="oneit.servlets.jsp.BaseJSP" %>
<%! protected String getName (ServletConfig config) { return "process_error_jsp"; } %>
<%@ include file="./skin/oneit/include/small_head_pre.jspf" %>
<title>We signed you out</title>
<%@ include file="./skin/oneit/include/small_head_post.jspf" %>
<%
String restartLink = "../index.jsp";
%>
<body>
<%@ include file="./skin/oneit/include/small_content_pre.jspf" %>
<p class="info_header">We signed you out</p>
<p class="info_text">
To help protect your account, we automatically sign you out of Talentology after a long period of inactivity.
</p>
<%
if(restartLink != null)
{
%>
<p class="info_text"><a href="<%= restartLink %>">Sign in again</a></p>
<% } %>
<p class="info_text">
Message generated on <br/>
<span style="font-size: 12px;">
<%= new java.util.Date().toString()%>.
</span>
</p>
<%@ include file="./skin/oneit/include/small_content_post.jspf" %>
</body>
</html>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment