-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathupload-image.html
38 lines (27 loc) · 980 Bytes
/
upload-image.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
35
36
37
38
<!doctype html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
<title>upload image to https://telegra.ph/</title>
<style>
</style>
</head>
<body>
<h1>upload image to https://telegra.ph/</h1>
<hr/>
<div class="container">
<form method="post" action="https://telegra.ph/upload" enctype="multipart/form-data" target="_blank">
<label for="select-file">Select Image(<5M):</label>
<input id="select-file" name="file0" type="file">
<input value="click to upload" type="submit">
</form>
</div>
<hr/>
<div>
<p>The url of the image below is <strong>https://telegra.ph/file/cad7038fe82e47f79c609.jpg<strong> </p>
<img src="https://telegra.ph/file/cad7038fe82e47f79c609.jpg" width=100%>
</div>
</body>
</html>