-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (59 loc) · 1.88 KB
/
index.html
File metadata and controls
63 lines (59 loc) · 1.88 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html>
<head><title>
Image Upload
</title>
<link href="css/style.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
<script type="text/javascript" src="js/upload.js"></script>
</head>
<body>
<script type="text/javascript"><!--
google_ad_client = "ca-pub-5644701533226121";
/* Werbung */
google_ad_slot = "4200088747";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
<form id="form1" enctype="multipart/form-data" method="post" action="py/upload">
<div class="row">
<div class="row">
<label for="img">Select an image to upload</label>
</div>
<input type="file" name="img" id="img" onchange="fileSelected();"/>
</div>
<div id="step2" style="display:none;">
<div id="fileInfo">
<div id="fileName"></div>
<div id="fileSize"></div>
<div id="fileType"></div>
</div>
<div id="uploadButton" style="display:none;">
<div class="row"></div>
<div class="row">
<input type="button" onclick="uploadFile()" value="Upload" />
</div>
</div>
<div id="step3" style="display:none;">
<div class="row"></div>
<div id="progressIndicator">
<div id="progressBar">
<div id="progressNumber"></div>
</div>
<div>
<div id="transferSpeedInfo" class="floatLeft" style="width: 80px;"> </div>
<div id="timeRemainingInfo" class="floatLeft" style="margin-left: 10px;"> </div>
<div id="transferBytesInfo" class="floatRight" style="text-align: right;"> </div>
<div class="clear"></div>
</div>
<div id="uploadResponse"></div>
</div>
</div>
</div>
</form>
</body>
</html>