To modify existing files for a configurable login page

  1. Identify the file you want to edit, such as login.html or login.css, and open it in a text editor.
  2. Make your modifications and save the file. Do not change the name of any HTML files.

    If your modifications include any changes to the resource files that are referenced, such as pointing to a customized CSS file or a new image, be sure to use the following relative path format for references:

    /sso/resource/pathToYourResource

    For example, if you add a file named mylogin.css and want the login.html file to use this stylesheet, then the login.html file will need the following in the <head> section:

    <link id="StyleLink" type="text/css" rel="stylesheet" href="/sso/resource/mylogin.css">

    Note that you do NOT add a resource subdirectory to the directory with the login page files.

    If you modify an existing file, such as login.css, you should then modify references to it to include "resource," for example:

    <link id="StyleLink" type="text/css" rel="stylesheet" href="/sso/resource/login.css">

  3. Update the zip file with the new version of the file you modified.