New article
Recently updated
Removing the Remember me option from the login page
Who is this article for?Users who want to learn about removing the 'Remember me' option from the login page.
Server Access is required.
This article outlines the process of removing the Remember me option from the login page.
1. Server Configuration Change
- To remove the remember me option from the login screen, the Web.config file needs to be edited in a plain text editor, such as Notepad.
- Editing this file will log all users out the may need to scheduled at a suitable time.
- This file is found under the TaraWeb folder.
- The setting to edit is in the below example.
<add key="Tara.Web.RememberMeEnabled" value="true" />
- Change this to match the below example.
<add key="Tara.Web.RememberMeEnabled" value="false" />