-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathupload.html
More file actions
32 lines (29 loc) · 1.05 KB
/
upload.html
File metadata and controls
32 lines (29 loc) · 1.05 KB
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
28
29
30
31
32
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Upload</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/swfobject/2.2/swfobject.js"></script>
<script type="text/javascript" src="scriptcam.js"></script>
<script type="text/javascript" src="assets/js/upload.js"></script>
</head>
<body>
<div id="webcam"></div>
<div id="recordZone">
<input type="button" value="Record" id="recordButton"/>
<input type="button" value="Stop" id="stopButton"/>
<span id="timeLeft">2:30</span>
</div>
<div id="div_form_video">
<form id="form_video" method="post" action="script-upload.php">
<label for="titre">Titre : </label>
<input type="text" name="titre" maxlength="100" /><br/>
<label for="description">Description : </label>
<textarea name="description" maxlength="500"></textarea><br/>
<input type="hidden" name="id" id="input_id" />
<input type="submit" />
</form>
</div>
</body>
</html>