MyBB Community Forums

Full Version: quick login
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Can someone give me a plugin or a code that creates a quick login on the index?
It's already in MyBB by default.

At the bottom of your forums:
The code
<form action="member.php" method="post">
    <input type="hidden" name="action" value="do_login" />
    <span class="smalltext"><strong>Quick Login:</strong></span>
    <input type="text" class="textbox" name="username" title="Username" value="Username" onfocus="if(this.value == 'Username') { this.value=''; }" onblur="if(this.value=='') { this.value='Username'; }" />
    <input type="password" class="textbox" name="password" title="Password" value="Password" onfocus="if(this.value == 'Password') { this.value=''; }" onblur="if(this.value=='') { this.value='Password'; }" />
    <!-- start: gobutton -->
<input type="submit" class="button" value="Go" />
<!-- end: gobutton -->
</form>
Okay thanks got it