How to use these custom login forms on your Domino web server:
Make sure your Domino Server runs R5.04 or higher (This database uses new features in R5.04 and has not been tested on previous releases).
Configure your server document for "Session authentication" on the "Internet Protocols", then "Domino Engine" tab. Set the value to either
"Single Server" or "Multi-server". For details, see the Domino Administrator Help database.
Make sure your Domino Server has a Domino Configuration Database "domcfg.nsf". For details, see the Domino Administrator Help database.
Copy this database to your Domino web server into the root data directory. For example: C:\notes\data\dclf.nsf
Open the domcfg.nsf database on your webserver and create a new mapping for the login form by selecting "Create, Mapping a Login Form" :
Set the "Target Database file name" to the name of this database, for example dclf.nsf
Set the "Target Form name" to one of the following form names provided in dclf.nsf:
LoginBlackKeyAnim (Black background with object animation)
LoginBlackKeyStatic (Black background without object animation)
LoginWhiteKeyAnim (White background with object animation)
LoginWhiteKeyStatic (White background without object animation)
function convertTargetAddress() {
alert("Converting from: " + document.forms[0].RedirectTo.value);
if (window.location.href.indexOf('/names.nsf?Login')==-1) {
document.forms[0].RedirectTo.value = window.location.href.replace(/https:/,"http:");
}
alert("Converted to: " + document.forms[0].RedirectTo.value);
}