MyBB Community Forums

Full Version: "Remember Me"
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
What is the "remember me" html source? Instead of...

	lang.remember_me = "{$lang->remember_me}";

What do I put for the html source? It would obviously be something like...

<input type=checkbox name="somethinghere">{$lang->remember_me}

Please help a brother out Sleepy
Are you talking about:

$l['remember_me'] = "Remember me";
?


If so, it's in the file:
mybb/inc//languages/english/global.lang.php
Hope that helped.
No, I mean the raw html, I don't want to have to use JS.
Sigh, bump.
Apparently it is:
<span class="remember_me">
  <input name="quick_remember" type="checkbox" checked="checked" value="yes" class="checkbox" id="quick_login_remember">
  <label for="quick_login_remember"> Remember me</label>
</span>
I stole the checkbox from the member_login template. Seems to work, mind you I also stole the login template from there too (forumwarfare login box). I hate the Quick Login feature, since it's JS-powered and doesn't accept autofill.
(2010-08-22, 04:02 AM)combus Wrote: [ -> ]Apparently it is:
<span class="remember_me">
  <input name="quick_remember" type="checkbox" checked="checked" value="yes" class="checkbox" id="quick_login_remember">
  <label for="quick_login_remember"> Remember me</label>
</span>



I also use this code. Just paste this code where ever you want to put the remember me box with the text.