I am playing around with a free template and am trying add a login form to it right under a search box. I can’t seem to get it to work. I know templates are not good but I am just seeing what I can do with it. The site is at http://foxdenwebsolutions.com/hammer-forge/stylish/index.html. The code for the login form may be incorrect. This is actually for a client and I am trying to use their login form.
<!-- Login Form Begin -->
<div id="loginform">
<form method="post" action="../../forums/member.php">
<input type="text" placeholder="Username" value="" size="25" name="username" class="textbox" autocomplete="off">
<input type="password" placeholder="Password" value="" size="25" name="password" class="textbox" autocomplete="off"><br>
<br>
<b> <a href="../../forums/member.php?action=register" style="text-decoration:none">
Register</a>
<a href="../../forums/member.php?action=lostpw" style="text-decoration:none">
Recover</a></b>
<input type="checkbox" value="yes" checked="checked" name="remember" class="checkbox"> Remember</label>
<input type="submit" value=" Login " name="submit" class="button">
<input type="hidden" value="do_login" name="action">
<input type="hidden" value="../../index.php" name="url">
</form>
</div>
<!-- Login Form End -->
Any help would be greatly appreciated.