Login block
Posted: 22 Jun 2010, 08:03
I'm trying to create a custom login blog with the java script help. Basically it will fade in with a little login window when you click on login... the thing is that the login input doesn't work.. what am i doing wrong?
Code: Select all
<div id="login_wrapper">
<div id="login_top"></div>
<div id="login">
<form method="post" action="{S_LOGIN_ACTION}">
<div class="login_block">
<label for="login_username">Username:</label>
<input type="text" id="login_username" name="username" />
</div>
<div class="login_block">
<label for="login_password">Password:</label>
<input type="password" id="login_password" name="pass" />
</div>
<div class="login_block_submit">
<input type="submit" id="login_submit" name="submit" value="" />
</div>
<p class="not_login_info">
<span class="left"><input name="" type="checkbox" value="" class="checkbox" /> Remember me</span>
<a href="/ucp.php?mode=sendpassword" class="right">Lost your password or username?</a>
</p>
<p class="not_info"><span class="img"></span>You can only register upon invitation.<span class="close"></span></p>
</form>
</div>
<div id="login_bottom"></div>
</div>