antville/code/File/new.skin
Robert Gaggl db8750202a - changed form because specifying a name is not mandatory anymore
- now using global input-macro (which echoes request data by default)
2002-07-19 08:59:43 +00:00

20 lines
902 B
Text

<table border="0" width="400" cellspacing="0" cellpadding="3">
<form method="post" action="<% response.action %>" enctype="multipart/form-data">
<tr>
<td valign="top" class="small" nowrap="nowrap">Name:</td>
<td><% input name="alias" size="25" %><br /><span class="small">If you do not specify a name, Antville will create one based on the name of the file you uploaded.</small></td>
</tr>
<tr>
<td class="small" valign="top" nowrap="nowrap">Description:</td>
<td nowrap="nowrap"><% input type="textarea" name="description" cols="25" %></td>
</tr>
<tr>
<td class="small" nowrap="nowrap">File:</td>
<td nowrap="nowrap"><% input type="file" name="rawfile" width="10" %></td>
</tr>
<tr>
<td class="small" valign="top" nowrap="nowrap">&nbsp;</td>
<td nowrap="nowrap"><% input type="button" name="save" value="save" %>&nbsp;<% input type="button" name="cancel" value="cancel" %></td>
</tr>
</form>
</table>