This repository has been archived by the owner on Sep 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27
/
index.html
115 lines (115 loc) · 2.53 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Upload Image to Telegra.ph</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #000;
color: #fff;
margin: 0;
padding: 0;
}
.container {
max-width: 600px;
margin: 20px auto;
padding: 20px;
background-color: #222;
border-radius: 8px;
box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}
h1 {
color: #007bff;
text-align: center;
margin-bottom: 20px;
}
form {
text-align: center;
}
label {
display: block;
margin-bottom: 10px;
font-weight: bold;
}
input[type="file"] {
margin-bottom: 20px;
display: block;
width: 100%;
padding: 10px;
border-radius: 5px;
border: 1px solid #666;
background-color: #333;
color: #fff;
box-sizing: border-box;
}
input[type="submit"] {
padding: 10px 20px;
background-color: #007bff;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
}
input[type="submit"]:hover {
background-color: #0056b3;
}
hr {
border: none;
border-top: 1px solid #555;
margin: 20px 0;
}
.image-container {
text-align: center;
margin-top: 20px;
}
.image-container img {
max-width: 100%;
height: auto;
border-radius: 8px;
box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}
p {
text-align: center;
margin-top: 20px;
color: #ccc;
}
strong {
color: #007bff;
}
.footer {
text-align: center;
margin-top: 20px;
color: #ccc;
}
.footer a {
color: #fff;
text-decoration: none;
}
.footer a:hover {
color: #007bff;
}
</style>
</head>
<body>
<div class="container">
<h1>Upload Image to Telegra.ph</h1>
<form method="post" action="https://telegra.ph/upload" enctype="multipart/form-data" target="_blank">
<label for="select-file">Select Image (<5MB):</label>
<input id="select-file" name="file0" type="file">
<input value="Click to Upload" type="submit">
</form>
<hr />
<div class="image-container">
<p>The URL of the image below is <strong>https://telegra.ph/file/d39104297903c204c2311.jpg</strong></p>
<img src="https://telegra.ph/file/d39104297903c204c2311.jpg" alt="Uploaded Image">
</div>
<div class="footer">
Developed by <a href="https://telegram.me/ZORO2045">ፚ Ꭷ Ꮢ Ꭷ ❥</a> © 2024</a>
</div>
</div>
</body>
</html>