I’m trying to create a “Super Header” that will offer users a chance to log in.
The “Super Header” is the first <div> in a template called header_content that I embed in other templates.
When I render just the header_content template, everything works. But when I view my website, I can see the boxes for Username and Password, and I can enter data in them, but the “Go” button doesn’t work. Additionally, the links for Contact the Webmaster and Forgot your password do not work.
Here’s the code for the “Super Header” <div>:
<div id="superHeader">
Log in to see everything! Not registered? {encode="{webmaster_email}" title="Contact the webmaster."}
{exp:member:login_form return="site/content_blog"}
Username: <input class="input" type="text" name="username" value="" maxlength="22" size="15" /> Password: <input class="input" type="password" name="password" value="" maxlength="22" size="15" />
<input type="submit" name="submit" value=" GO " /> <a href="http://{path=member/forgot_password}">Forget your password?</a>
{/exp:member:login_form}
</div>Can you help?