index.html (view raw)
1<!DOCTYPE html>
2<html lang="en">
3 <head>
4 <meta charset="UTF-8" />
5 <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6 <meta http-equiv="X-UA-Compatible" content="ie=edge" />
7 <title>fsrv</title>
8 <link rel="icon" type="image/png" sizes="16x16" href="https://icyphox.sh/favicon.png">
9 </head>
10 <style>
11 body {
12 max-width: 640px;
13 padding: 0 10px;
14 margin: 40px auto;
15 }
16 </style>
17 <body>
18 <h1>fsrv</h1>
19 <form
20 enctype="multipart/form-data"
21 action="https://x.icyphox.sh/"
22 method="post"
23 >
24 <p>file:</p>
25 <input type="file" name="file" />
26 <input type="submit" value="upload" />
27 <p>key:</p>
28 <input type="password" name="key" />
29 </form>
30 </body>
31</html>