Vincent,
Thanks for pointing that out. From a quick check, you're right that we're not copying that value over. I haven't tested this yet, but it seems like adding the following code to the /media/sourcecoast/mod_sclogin.js file, around line 45, should do the trick:
var rememberField = jfbcJQuery(formId + ' :input[name=remember]').eq(0).clone(true);
rememberField.attr('type', 'hidden');
jfbcJQuery(otpForm).find("form").append(rememberField);I believe that will work if the Remember Me field is set to show, but will break OTP if the field is not set to show. We'll have to do some testing with it in general, but would love to hear your feedback if that gets things going for you.
Thanks,
Alex