Login block

Support for PhpBB3.
Post here to get help with any phpBB3 related issue
Forum rules
In order the get any support, you will have to do following:
1. Use a describing title!
2. Describe your problem and what happened when the problem occured
3. Tell us what version of phpBB3 you are currently using.
If not your topic may be ignored or locked!

Login block

Post by neuropass »

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>

Re: Login block

Post by Steve »

using what java script code to achieve this?

Re: Login block

Post by cisco007 »

yeah, i don't see any JS in that code!

Re: Login block

Post by neuropass »

Steve© » 25 Jun 2010, 21:52 wrote:using what java script code to achieve this?

that's on the overall header.. that is only used to have the hidden pop up and the fade in effect...