axebps commited on
Commit
044d88f
1 Parent(s): 8d2e9b9

Create static/index.html

Browse files
Files changed (1) hide show
  1. static/index.html +49 -0
static/index.html ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ <title>singlefile</title>
7
+ <style>
8
+ body {
9
+ font-family: Arial, sans-serif;
10
+ display: flex;
11
+ justify-content: center;
12
+ align-items: center;
13
+ height: 100vh;
14
+ margin: 0;
15
+ background-color: #f0f0f0;
16
+ }
17
+ form {
18
+ background-color: white;
19
+ padding: 20px;
20
+ border-radius: 8px;
21
+ box-shadow: 0 0 10px rgba(0,0,0,0.1);
22
+ }
23
+ input[type="url"] {
24
+ width: 300px;
25
+ padding: 10px;
26
+ margin-right: 10px;
27
+ border: 1px solid #ddd;
28
+ border-radius: 4px;
29
+ }
30
+ input[type="submit"] {
31
+ padding: 10px 20px;
32
+ background-color: #007bff;
33
+ color: white;
34
+ border: none;
35
+ border-radius: 4px;
36
+ cursor: pointer;
37
+ }
38
+ input[type="submit"]:hover {
39
+ background-color: #0056b3;
40
+ }
41
+ </style>
42
+ </head>
43
+ <body>
44
+ <form action="/download" method="post">
45
+ <input type="url" name="url" placeholder="Enter URL to download" required>
46
+ <input type="submit" value="Download">
47
+ </form>
48
+ </body>
49
+ </html>