-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (23 loc) · 740 Bytes
/
index.html
File metadata and controls
27 lines (23 loc) · 740 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>hello world</title>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/dropbox.js/0.10.2/dropbox.min.js">
</script>
<script src="/assets/db.js">
</script>
<style type='text/css'>
</style>
</head>
<body>
<div id="fileList">
<p>No videos selected!</p>
</div>
<form id="create_video_sample" method="POST" enctype="multipart/form-data">
<!--This is where the actual json request lives, it has to come before the file input -->
<input type="file" id="fileElem" accept="video/*,image/*" name="filePath" />
</form>
</body>
</html>