-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathupload.html
More file actions
20 lines (20 loc) · 845 Bytes
/
upload.html
File metadata and controls
20 lines (20 loc) · 845 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<head>
<title>Image Host - Upload an Image</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.0/jquery.min.js"></script>
<script src="js/aws-sdk-2.442.0.min.js" type="text/javascript"></script>
<script src="js/upload.js" type="text/javascript"></script>
<link rel="stylesheet" type="text/css" href="css/style.css">
<link href="https://fonts.googleapis.com/css?family=Cute+Font" rel="stylesheet">
</head>
<body>
<div class="uploadform">
<form name="upload">
<h1>Upload Image</h1>
Enter a caption: <input id="captionTxt" type="text"></input><br><br>
Select File: <input id="fileInput" type="file"></input><br><br>
<input id="submitBtn" type="submit" value="Upload Image"></input><br>
</form>
</div>
</body>
</html>