-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (27 loc) · 1.03 KB
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cloudinary Test</title>
<script src="vendor/jquery.min.js"></script>
<script src="vendor/jquery.ui.widget.js"></script>
<script src="vendor/jquery.iframe-transport.js"></script>
<script src="vendor/jquery.fileupload.js"></script>
<script src="vendor/cloudinary-jquery-file-upload.js"></script>
<script src="js/emily-upload-image.js"></script>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<h1>Cloudinary Test</h1>
<div class="form-box">
<input name="file" type="file"
class="cloudinary-fileupload"
data-cloudinary-field="image_id"
data-form-data='{"upload_preset":"vvqon8nr","callback": "https://www.example.com/cloudinary_cors.html"}'>
</input>
<div class="progress_bar"></div>
</div>
<div class="preview"></div>
</body>
</html>