: The 'Log me in automatically each visit' feature
The "Log me in automatically each visit" option on the message board login page saves the member's username and encrypted password in their browser so that they don't have to manually login each time they visit the message board. This feature may be a cause for concern with some message boards that require high levels of security because there is always a chance of a user forgetting to logout on a public computer.
You can modify the automatic login option by following the directions below:
- Login to your Website Toolbox account.
- Click the Custom HTML link.
- Insert one of the following codes into the Footer textbox.
The automatic login option is turned on by default when a member visits the login page of a message board. The code below can be used to turn it off by default.
<script>
<!--
var objCheckbox = document.getElementById('rem');
if (objCheckbox && objCheckbox.tagName == "INPUT") {
objCheckbox.checked = false;
}
-->
</script>
The code below can be used to hide the automatic login option completely.
<script>
<!--
var objCheckbox = document.getElementById('rem');
if (objCheckbox && objCheckbox.tagName == "INPUT") {
var checkboxParent = objCheckbox.parentNode.parentNode;
if (checkboxParent && checkboxParent.tagName == "TR") {
checkboxParent.style.display = "none";
}
}
-->
</script>
|