Login Form to Other Site
Permalink
We have a login form to a webportal found here: http://www.pcianimalhealth.com/onlineorderingAH.htm...
The actual web portal ishttp://24.38.3.150/scripts/cgiip.exe/WService=wsbroker1/login.html?...
We'd like to incorporate the actual login and submit button into our site here: http://www.pcianimalhealth.com/index.php?cID=393...
We'd obviously work on the design but right not the "SUBMIT" button does not even work.
What are we doing wrong?
Thanks
The actual web portal ishttp://24.38.3.150/scripts/cgiip.exe/WService=wsbroker1/login.html?...
We'd like to incorporate the actual login and submit button into our site here: http://www.pcianimalhealth.com/index.php?cID=393...
We'd obviously work on the design but right not the "SUBMIT" button does not even work.
What are we doing wrong?
Thanks
Thanks Lucas... I made the change but there is still something wrong in the code and I don't know html at all!
I didn't see this earlier, but you close your form out too early.
Change that table area to this:
<table border="0" cellpadding="2" align="center">
<form action="http://24.38.3.150/scripts/cgiip.exe/WService=wsbroker1/login.html?conum=001" method="POST"> <input name="pgm" type="hidden" value="usercode.bbx" />
<tbody>
<tr>
<td align="right"><span style="color: #333333; font-family: Verdana; font-size: x-small;">User ID:</span></td>
<td><input maxlength="25" name="usercode" size="10" type="text" /></td>
</tr>
<tr>
<td align="right"><span style="color: #333333; font-family: Verdana; font-size: x-small;">Password:</span></td>
<td><input maxlength="256" name="password" size="10" type="password" /></td>
</tr>
<tr>
<td colspan="2" align="center"><input name="lookup" type="submit" value="Submit" /></td>
</tr>
<tr>
<td colspan="2" align="center"> </td>
</tr>
</tbody>
</form>
</table>
That should get your form submitting. Beyond that, I'm not sure there's much I can tell you.
Change that table area to this:
<table border="0" cellpadding="2" align="center">
<form action="http://24.38.3.150/scripts/cgiip.exe/WService=wsbroker1/login.html?conum=001" method="POST"> <input name="pgm" type="hidden" value="usercode.bbx" />
<tbody>
<tr>
<td align="right"><span style="color: #333333; font-family: Verdana; font-size: x-small;">User ID:</span></td>
<td><input maxlength="25" name="usercode" size="10" type="text" /></td>
</tr>
<tr>
<td align="right"><span style="color: #333333; font-family: Verdana; font-size: x-small;">Password:</span></td>
<td><input maxlength="256" name="password" size="10" type="password" /></td>
</tr>
<tr>
<td colspan="2" align="center"><input name="lookup" type="submit" value="Submit" /></td>
</tr>
<tr>
<td colspan="2" align="center"> </td>
</tr>
</tbody>
</form>
</table>
That should get your form submitting. Beyond that, I'm not sure there's much I can tell you.
action="login.html?conum=001"
I think you need to change it to:
action="http://24.38.3.150/scripts/cgiip.exe/WService=wsbroker1/login.html?conum=001"