mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-04-10 06:48:22 +02:00
* Added a 'WEBAPI_AUTHS' table to the database. * Added a 'USERS.WEBAPI_AUTH_TIMEOUT' field to the database. * Incremented the database version to 260. * Added 'RDUser::webapiAuthTimeout()' and 'RDUser::setWebapiAuthTimeout()' methods in 'lib/rduser.cpp' and 'lib/rduser.h'. * Added a 'WebAPI Timeout' control to the Edit User dialog in 'rdadmin/edit_user.cpp' and 'rdadmin/edit_user.h'. * Implemented a 'CreateTicket' Web API call.
34 lines
885 B
HTML
34 lines
885 B
HTML
<html>
|
|
<head>
|
|
<title>Rivendell LISTCUTS Service Test Harness</title>
|
|
<body>
|
|
<form action="/rd-bin/rdxport.cgi" method="post" enctype="multipart/form-data">
|
|
<input type="hidden" name="COMMAND" value="9">
|
|
<table cellpadding="0" cellspacing="2" border="0">
|
|
<tr>
|
|
<td align="right">LOGIN NAME:</td>
|
|
<td><input type="text" name="LOGIN_NAME" size="20" maxlength="255"></td>
|
|
</tr>
|
|
<tr>
|
|
<td align="right">PASSWORD:</td>
|
|
<td><input type="password" name="PASSWORD" size="20" maxlength="32"></td>
|
|
</tr>
|
|
<tr>
|
|
<td align="right">TICKET:</td>
|
|
<td><input type="text" name="TICKET" size="40" maxlength="40"></td>
|
|
</tr>
|
|
<tr>
|
|
<td align="right">CART NUMBER:</td>
|
|
<td><input type="text" name="CART_NUMBER" size="20" maxlength="6"></td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2" align="right"> </td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2" align="right"><input type="submit" value="OK"></td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
</body>
|
|
</html>
|