-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathupload.html
More file actions
34 lines (28 loc) · 1.04 KB
/
upload.html
File metadata and controls
34 lines (28 loc) · 1.04 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
<!DOCTYPE html>
<html>
<head>
<title>Upload</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/jquery.mobile-1.0b2.min.css" />
<script type="text/javascript" src="js/jquery-1.6.2.min.js"></script>
<script type="text/javascript" src="js/jquery.mobile-1.0b2.min.js"></script>
<script type="text/javascript" src="js/dinamic.js"></script>
</head>
<body>
<div data-role="page" id="upload" data-title="Upload">
<div data-role="header">
<h1>Upload</h1>
</div><!-- /header -->
<div id="content" data-role="content">
<h3>Upload your file in sdcard</h3>
<form action="upload.cgi" method="post" enctype="multipart/form-data">
<input name="file" type="file"/>
<input type="submit" value="Submit"/>
</form>
</div><!-- /content -->
<div data-role="footer">
<a href="index.html" data-role="button" data-icon="arrow-l" data-rel="back">Back</a>
</div><!-- /footer -->
</div><!-- /page -->
</body>
</html>