forked from verdnatura/hedera-web
31 lines
784 B
XML
31 lines
784 B
XML
<vn>
|
|
<div id="main" class="htk-image-editor">
|
|
<form
|
|
id="form"
|
|
method="post"
|
|
target="image-editor"
|
|
enctype="multipart/form-data"
|
|
on-submit="onFormSubmit">
|
|
<div class="form-group">
|
|
<label for="name"><t>FileName</t></label>
|
|
<input id="name" type="text" name="name" on-change="onNameChange"/>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="file"><t>File</t></label>
|
|
<input id="file" type="file" name="image"/>
|
|
</div>
|
|
<div class="footer">
|
|
<input id="submit" type="submit" class="thin"/>
|
|
<htk-spinner id="spinner"/>
|
|
<div class="clear"/>
|
|
</div>
|
|
<input id="schema" type="hidden" name="schema"/>
|
|
<input id="max-size" type="hidden" name="MAX_FILE_SIZE"/>
|
|
</form>
|
|
<iframe
|
|
id="iframe"
|
|
name="image-editor"
|
|
on-load="onIframeLoad"/>
|
|
</div>
|
|
</vn>
|