25 lines
693 B
HTML
25 lines
693 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>generic one click host</title>
|
|
<script src="/static/js/jquery.js" type="text/javascript"></script>
|
|
<script src="/static/js/chunkupload.js" type="text/javascript"></script>
|
|
<script src="/static/js/upload.js?1" type="text/javascript"></script>
|
|
</head>
|
|
<body>
|
|
<h1>videopdf</h1>
|
|
{% if anonymous %}
|
|
<div>
|
|
you need an account
|
|
</div>
|
|
{% else %}
|
|
<div>
|
|
<div id='status'></div>
|
|
<form id="addFile">
|
|
<input id="file" name="file" type="file" value="Select File.." />
|
|
<input id="upload" type="button" value="Upload" style="display: none" />
|
|
</form>
|
|
</div>
|
|
{% endif %}
|
|
</body>
|
|
</html>
|