-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathImageUpload.html
28 lines (27 loc) · 1023 Bytes
/
ImageUpload.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<div class="ImageUpload">
<form id="upload_form" method="POST" enctype="multipart/form-data">
<table>
<label>Tags: <input type="text" name="tags"></label>
</tr>
<tr>
<td><label>Description: </label></td>
<td><input type="text" name="description"></input></td>
</tr>
<tr>
<td><label>Title: </label></td>
<td><input type="text" name="title"></input></td>
</tr>
<tr>
<td><label>Credit URL: </label></td>
<td><input type="text" name="creditURL"></input></td>
</tr>
<tr>
<td><label>Choose File:</label><td>
<td><input type="file" name="file" id="file"></input><td/>
</tr>
</table>
</form>
<br/>
<button dojoType="dijit.form.Button" type="button" dojoAttachPoint="at_confirm">Confirm and Continue</button>
<button dojoType="dijit.form.Button" type="button" dojoAttachPoint="at_cancel">Cancel</button>
</div>