forked from filamentgroup/jQuery-Custom-File-Input
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (31 loc) · 996 Bytes
/
index.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
32
33
34
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>File Uploader</title>
<link href="css/basic.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="http://filamentgroup.github.com/EnhanceJS/enhance.js"></script>
<script type="text/javascript">
// Run capabilities test
enhance({
loadScripts: [
'https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js',
'js/jQuery.fileinput.js',
'js/example.js'
],
loadStyles: ['css/enhanced.css']
});
</script>
</head>
<body>
<!-- realistic form attributes: <form action="#" method="post" enctype="multipart/form-data"> -->
<form action="#">
<fieldset>
<legend>Profile image</legend>
<label for="file">Choose photo</label>
<input type="file" name="file" id="file" />
<input type="submit" name="upload" id="upload" value="Upload photo" />
</fieldset>
</form>
</body>
</html>