Hi all,
is there a way customize the sign-in page to display disclaimer notes and only upon the approval of reading and accepting it ,
login is permitted?
As I personally dislike those self made sign in pages as they are hard to manage upon release changes, how about just writing the disclaimer text in the sing-in page instructions and imply for the user to accept them when doing the login itself?!
Or the other thing could be you place this in behding the login as part of the authorisation of the backend ressource.
these notes must be read and agreed - "i accept" button in order to be able to sign in
that's the security policy for my orgnization, i have managed to customize the sign page , but putting the notes on the sign in page and bind the "i accept" button and then allow the user to sign , is way over my head...
In your loginpage.thtml template file, Replace this: <td><input type="submit" value="<% signin %>" name="btnSubmit"> With this: <td><input type="submit" value="<% signin %>" name="btnSubmit" disabled> <input type="checkbox" onClick="document.frmLogin['btnSubmit'].disabled =(document.frmLogin['btnSubmit'].disabled)? false : true">I attest that I have read, fully understand, and accept all provisions of the <b>Terms and Conditions</b> below.</p>