Sourcecode in LayoutImageMgr/new.skin:
1: <form method="post" action="<% response.action %>" enctype="multipart/form-data">
2: <table border="0" width="400" cellspacing="0" cellpadding="3">
3: <tr>
4: <td class="small" nowrap="nowrap">Local file:</td>
5: <td nowrap="nowrap"><% input type="file" name="rawimage" size="20" %></td>
6: </tr>
7: <tr>
8: <td align="center"><em>— or —</em></td>
9: <td class="small">(only specify either a local file or a remote URL)</td>
10: </tr>
11: <tr>
12: <td class="small" nowrap="nowrap">Remote URL:</td>
13: <td nowrap="nowrap"><% input name="url" size="30" %></td>
14: </tr>
15: <tr>
16: <td valign="top" class="small" nowrap="nowrap">Name:</td>
17: <td><% input name="alias" size="30" %><br /><span class="small">If you do not specify a name Antville will create one based on the name of the local or remote file, resp.</span></td>
18: </tr>
19: <tr>
20: <td class="small" nowrap="nowrap" valign="top">Description:</td>
21: <td nowrap="nowrap"><% input type="textarea" name="alttext" cols="25" rows="3" %></td>
22: </tr>
23: <tr>
24: <td class="small" valign="top" nowrap="nowrap"> </td>
25: <td nowrap="nowrap"><br /><% input type="submit" name="save" value="Save" %> <% input type="submit" name="cancel" value="Cancel" %></td>
26: </tr>
27: </table>
28: </form>
29:
|