Atrium Sign On Page Modifications for Version 3.0.9

The Atrium sign on page has been modified in this release to handle expired passwords.

Previously, Atrium would not allow a user to reset their password if it had expired or was about to expire.

Starting with this release, password reset can be enabled if required

To accommodate this new feature, some simple modifications have been made to the default Atrium sign on page. Users with customized pages should follow the instructions below to modify their pages.

Instructions

  1. In file /www/profoundui/htdocs/profoundui/userdata/html/atruim_login.html immediately under the <head> tag on line 5, insert a new line:

    <meta http-equiv="X-UA-Compatible" content="IE=8" />

  2. Remove the following section:

    var authMessages = {
        
          "user required": "User name is required.",
          "password required": "Password is required.",
          "invalid credentials": "User name or password is invalid."
        };

     

    and replace it with:

    var authMessages = {
        
          "user required": "User name is required.",
          "password required": "Password is required.",
          "invalid credentials": "User name or password is invalid.",
          "password expired": "Your password is expired.",
          "password pending expiration": "Your password will expire in {DAYS} days.\n\n" + 
                                         "Would you like to set a new password now?\n\n" + 
                                         "Click \"OK\" to set a new password or \"Cancel\" to sign on without changing your password."
        };