videopdf/templates/index.html

29 lines
786 B
HTML
Raw Normal View History

2013-02-12 13:19:31 +00:00
<!DOCTYPE html>
2013-02-12 07:09:52 +00:00
<html>
2013-02-12 13:19:31 +00:00
<head>
2013-02-12 14:06:39 +00:00
<title>videopdf</title>
2013-02-13 07:14:57 +00:00
<script type="text/javascript">
var UPLOAD_URL = "{{PREFIX}}/add";
</script>
2013-02-12 14:35:30 +00:00
<script src="{{PREFIX}}/static/js/jquery.js" type="text/javascript"></script>
<script src="{{PREFIX}}/static/js/chunkupload.js" type="text/javascript"></script>
<script src="{{PREFIX}}/static/js/upload.js?1" type="text/javascript"></script>
2013-02-12 07:09:52 +00:00
</head>
<body>
2013-02-12 13:19:31 +00:00
<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 %}
2013-02-12 07:09:52 +00:00
</body>
</html>