forked from Unknowns24/ImageHoster
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (30 loc) · 865 Bytes
/
index.html
File metadata and controls
31 lines (30 loc) · 865 Bytes
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div>Webpage for tests</div>
<hr />
<form
action="http://localhost:10229/api/images/v1/upload"
method="post"
enctype="multipart/form-data"
>
Select image to upload:<br />
<input type="file" name="images" id="images" /><br />
<input type="submit" value="Upload Image" name="submit" />
</form>
<hr />
<form action="http://localhost:10229/api/images/v1/download" method="post">
Select image to download:<br />
Name: <input type="text" name="image" id="image" /><br />
<input type="submit" value="Download Image" name="submit" />
</form>
<hr />
<form action="http://localhost:10229/api/images/v1/token" method="post">
Obtain a token<br />
<input type="submit" value="Get Token" name="submit" />
</form>
</body>
</html>