peterr
Posts: 5971
|
| Posted: 10/10/2004, 6:46 AM |
|
I think so. You would create a login page with CCS, open it in a Web browser, then copy and paste the HTML source (the HTML of the Login form) into your own HTML page. For example at http://forums.codecharge.com/login.php I found this HTML form in the HTML source:
<form method="post" action="login.php?ccsForm=Login" name="Login">
<tr>
<td class="RecordColumnTD"><B>Username</B> * </td>
<td class="RecordDataTD"><input name="login" value="" maxlength="100" class="Input"> </td>
</tr>
<tr>
<td class="RecordColumnTD"><B>Password</B> * </td>
<td class="RecordDataTD"><input type="password" name="password" value="" maxlength="100" class="Input"> </td>
</tr>
</table>
</td>
</tr>
</table>
<img src="images/spacer.gif" height="5" border="0"><br>
<table cellspacing="0" border="0" cellpadding="0" width="320">
<tr>
<td><input name="DoLogin" type="submit" value=" Login " class="submit_button"></td>
<td width="200">
<a href="forgot_password.php">Forgot your password?</a></td>
</tr>
</form>
_________________
Peter R.
YesSoftware Forums Moderator
For product support please visit http://support.yessoftware.com |