36 lines
1.3 KiB
HTML
36 lines
1.3 KiB
HTML
{{define "content"}}
|
|
<div id="upload">
|
|
<form id="upload_form" enctype="multipart/form-data" method="POST" action="/upload">
|
|
<div>
|
|
<div><label for="video_file">Please select video file</label></div>
|
|
<div><input type="file" name="video_file" id="video_file" onchange="fileSelected();" /></div>
|
|
</div>
|
|
|
|
<div>
|
|
<input type="button" value="Upload" onclick="startUploading()" />
|
|
</div>
|
|
|
|
<div id="error">You should select valid image files only!</div>
|
|
<div id="error2">An error occurred while uploading the file</div>
|
|
<div id="abort">The upload has been canceled by the user or the browser dropped the connection</div>
|
|
<div id="warnsize">Your file is very big. We can't accept it. Please select more small file</div>
|
|
|
|
<div id="progress_info">
|
|
<div id="progress"></div>
|
|
<div id="progress_percent"> </div>
|
|
<div class="clear_both"></div>
|
|
<div>
|
|
<div id="speed"> </div>
|
|
<div id="remaining"> </div>
|
|
<div id="b_transfered"> </div>
|
|
<div class="clear_both"></div>
|
|
</div>
|
|
|
|
<div id="upload_response"></div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
{{end}}
|
|
{{define "scripts"}}
|
|
<script type="application/javascript" src="/static/upload.js"></script>
|
|
{{end}}
|