]> jfr.im git - uguu.git/blob - index.html
Fix opening php tag
[uguu.git] / index.html
1 <!doctype html>
2 <html lang="en">
3
4 <head>
5 <meta charset="utf-8">
6 <meta name="viewport" content="width=device-width, initial-scale=1.0">
7 <meta name="description" content="Temp file hosting, Up to 150MB for 1 hour.">
8 <title>Uguu.se &middot; Temp File Hosting</title>
9 <link rel="shortcut icon" href=img/favicon.ico type="image/x-icon">
10 <link rel="stylesheet" href="css/pure-min.css">
11 <!--[if lte IE 8]>
12 <link rel="stylesheet" href="css/grids-responsive-old-ie-min.css">
13 <![endif]-->
14 <!--[if gt IE 8]><!-->
15 <link rel="stylesheet" href="css/grids-responsive-min.css">
16 <!--<![endif]-->
17 <!--[if lte IE 8]>
18 <link rel="stylesheet" href="css/blog-old-ie.css">
19 <![endif]-->
20 <!--[if gt IE 8]><!-->
21 <link rel="stylesheet" href="css/blog.css">
22 <!--<![endif]-->
23 </head>
24
25 <body>
26 <div id="layout" class="pure-g">
27 <div class="sidebar pure-u-1 pure-u-md-1-4">
28 <div class="header">
29 <h1 class="brand-title">Uguu.se</h1>
30 <h2 class="brand-tagline">Up to 150MB for 1 hour.</h2>
31 </div>
32 </div>
33 <div class="content pure-u-1 pure-u-md-3-4">
34 <div>
35 <div class="posts">
36 <h1 class="content-subhead">Upload</h1>
37 <section class="post">
38 <div class="post-description">
39 <p>
40 <form class="pure-control-group" action="api.php?d=upload" method="post" enctype="multipart/form-data">
41 <input type="hidden" name="MAX_FILE_SIZE" value="150000000" />
42 <fieldset>
43 <div class="pure-control-group">
44 <label for="file"> </label>
45 <input id="file" type="file" name="file">
46 </div>
47
48 <div class="pure-control-group">
49 <label for="randomname" class="pure-checkbox">
50 <input id="randomname" type="checkbox" name="randomname"> Generate random filename
51 </label>
52
53 <div class="pure-control-group">
54 <label for="customname">Custom filename, e.g cat.flac (optional):</label>
55 <input id="customname" type="text" name="name">
56 </div>
57
58 <button type="submit" class="pure-button pure-button-primary">Upload</button>
59 </div>
60 </fieldset>
61 </form>
62 </div>
63 </section>
64 </div>
65
66 <div class="posts">
67 <h1 class="content-subhead">Info</h1>
68 <section class="post">
69 <div class="post-description">
70 <p>Store any filetype with a size up to 150MB for up to 1 hour.</p>
71 <p>Uguu cares about your privacy and stores NO logs.</p>
72 <p>If you would like to upload using ShareX read <a href="https://github.com/ShareX/ShareX/wiki/Custom-Uploader-examples#uguuse">this</a>.</p>
73 <p>To upload using curl or make a tool you can post using:
74 <br> curl -i -F name=test.jpg -F file=@localfile.jpg http://uguu.se/api.php?d=upload</p>
75 <p>If you need to store files for a longer time, please use <a href="http://pomf.se">Pomf.se</a> or wait until Uguu offers longer time.</p>
76 <p>Uguu is in preview phase, so design is shitty and storage time is low. You can contact me via <a href="mailto:neku@pomf.se">neku@pomf.se</a> or <a href="https://twitter.com/nekunekus">@nekunekus</a>.</p>
77 </div>
78 </section>
79
80
81 <div class="footer">
82 <div class="pure-menu pure-menu-horizontal pure-menu-open">
83 <ul>
84 <li><a href="http://pomf.se">Pomf.se</a>
85 </li>
86 <li><a href="http://twitter.com/nekunekus">Twitter</a>
87 </li>
88 <li><a href="http://github.com/nokonoko">GitHub</a>
89 </li>
90 </ul>
91 </div>
92 </div>
93 </div>
94 </div>
95 </div>
96 </div>
97 </body>
98
99 </html>