videopdf/templates/index.html

26 lines
679 B
HTML
Raw Normal View History

2013-02-12 18:49:31 +05:30
<!DOCTYPE html>
2013-02-12 12:39:52 +05:30
<html>
2013-02-12 18:49:31 +05:30
<head>
2013-02-12 19:36:39 +05:30
<title>videopdf</title>
2013-02-12 18:49:31 +05:30
<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>
2013-02-12 12:39:52 +05:30
</head>
<body>
2013-02-12 18:49:31 +05:30
<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 12:39:52 +05:30
</body>
</html>