Customizing the Branding of the Error Page

The error page (err_latest.jsp) is displayed when Identity Server encounters an error with the following message:

Error: Unable to authenticate, (300101014-esp-01E79F6000B87D4E8)

IMPORTANT:After you customize this page, ensure that you back up this page before doing an upgrade. The upgrade process overrides any custom changes made to the err_latest.jsp page.

For information about customizing the error message, see To Customize Identity Server Messages.

You can customize the following items:

Customizing the Titles

The window title appears in the browser title bar. To replace this text, open the err_latest.jsp file and locate the following text that appears between the <head></head> tags:

<title><%=handler.getResource(JSPResDesc.TITLE)%></title>

For information about how to modify the file, see Modifying Configurations.

Replace the content between the <title> and </title> tags with the title you want to appear. For example:

<title>My Company</title>

The display title is the title that appears in the top frame of the page. Locate the following text that appears in the <body> of the page:

<div id="title"><%=handler.getResource(JSPResDesc.PRODUCT)%></div>

Replace the content between the <div id="title"> and </div> with the title you want to appear. For example:

<div id="title">My Company</div>

Customizing the Images

To replace the header image, open the err_latest.jsp file and locate the following text in the body of the file:

<div><img src="/nesp/images/AccessMan_Login_Head.png"></div>

For information about how to modify the file, see Modifying Configurations.

Replace the value of the src attribute with the path and filename of the image you want to use.

To replace the Novell logo image, locate the following text in the body of the file:

<div id="logo"><img src="/nesp/images/AccessMan31_Nlogo.png"></div>

Replace the value of the src attribute with the path and filename of the image you want to use.

Customizing the Colors

To change the background colors on the page, modify the color values in the <style> section of the <head> in err_latest.jsp.

For information about how to modify the file, see Modifying Configurations.