On the login page, the Remember me checkbox is checked by default. If you would like this checkbox to be unchecked by default, then you can insert the following code at the bottom of your login core page:


<script>
jQuery(function() {
jQuery('#rememberme').prop('checked', false);
});
</script>