-
Notifications
You must be signed in to change notification settings - Fork 5
/
upload.html
31 lines (27 loc) · 1.02 KB
/
upload.html
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
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<link rel="stylesheet" type="text/css" href="lib/reset.css" />
<link rel="stylesheet" type="text/css" href="css/styles.css" />
<!--[if IE]>
<link rel="stylesheet" type="text/css" href="css/ie.css" />
<![endif]-->
<script type="text/javascript" src="lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="lib/jquery-urlparser/jquery.url.js"></script>
<script type="text/javascript" src="js/upload.js"></script>
</head>
<body>
<div id="uploader">
<div id="uploadform">
<form action="php/io.php" method="post" enctype="multipart/form-data">
<span class="slidifierbutton editorbutton">
<input type="file" id="picturefile" name="picturefile"/>
</span>
<button id="uploadpicturebutton" class="slidifierbutton smallButton">Upload picture</button>
<strong id="uploadfailed"><!--Error message here--></strong>
<img id="uploadspinner" src="img/ajax-loader.gif"/>
</form>
</div>
</div>
</body>
</html>