Posted by walterbyrd on 01/04/08 11:53
I want a simple form, but with two buttons: login and logout. I
understand that I can do this by placing a form within a form.
Here is what I have. It looks okay, but the logout button is just like
pressing the login button.
<table border="3" bgcolor="#EEEEEE" width="30%" align="center"
valign="center" cellpadding="10%">
<tr><th bgcolor="#6699FF"><font
color="#FFFFFF">Login/Loguot:</font></th></tr>
<tr><td>
<form action="authenticate.php" method=POST>
Username:<br>
<input type="text" name="username">
<br><br>
Password:<br>
<input type="password" name="password">
<br><br>
<input type="submit" value="Log In">
<form>
<input type="button" value="Log Out"
onclick="http://localhost/WMS/logout.php">
</form>
</form>
</td></tr>
</table>
I have also tried:
<form action="logout.php">
<input type="submit" value="Log Out">
</form>
But that does not work either.
Navigation:
[Reply to this message]
|