Our web-designer just finished up our site, and it has an HTML Form with Text Inputs for Username/Password, and a Drop-Down box so they can choose where they are logging in. Since HTML doesn’t have anything that will work with this I don’t believe, what would be the best way to do it?
I am assuming Javascript, but I have never used it before, and really have no idea what to even search for to apply it in this case.
Current Form Code:
<form>
<input class="binput" name="username" style="margin-left: 40px;" value="Username">
<input class="binput" name="password" value="Password">
<select class="binput" style="margin-left: 40px; width: 130px;">
<option>Billing Panel</option>
<option>Voice Panel</option>
<option>Game Panel</option>
</select>
<input type="submit" class="blogin" value="Log In">
</form>
Panel 1 Login Integration Example:
<form method="post" action="http://www.yourdomain.com/whmcs/dologin.php">
Email Address: <input type="text" name="username" size="50">
Password: <input type="password" name="password" size="20">
<input type="submit" value="Login">
</form>
Panel 2 Login Integration Example:
<form method="POST" action="http://demo.tcadmin.com/templates/default/login.aspx">
<table border="0" id="table1"><br />
<tr><td>User:</td><td><input type="text" name="USERID" size="20"></td></tr>
<tr><td>Password:</td><td><input type="password" name="PASSWORD" size="20"></td></tr>
</table>
<input type="submit" value="Submit" name="B1"><input type="reset" value="Reset">
</form>
I edited the code!
I hope this one solve your problem:)