]> git.treefish.org Git - fex.git/blob - htdocs/sup.html
Original release 20150826
[fex.git] / htdocs / sup.html
1 <html>
2 <head>
3   <meta http-equiv="expires" content="0">
4   <title>F*EX simple upload</title>
5 </head>
6 <body>
7 <script type="text/javascript">
8   function showstatus() {
9     var file = document.forms["upload"].elements["file"].value;
10     if (file == "") return false;
11     window.open(
12       '/fup?showstatus=$RANDOM$',
13       'fup_status',
14       'width=700,height=500'
15     );
16     return true;
17   }
18 </script>
19 <h1><a href="/">F*EX</a> simple upload</h1>
20 <p><hr><p>
21 <form name="upload"
22       action="/fup"
23       method="post" 
24       accept-charset="UTF-8" 
25       enctype="multipart/form-data" 
26       onsubmit="return showstatus();">
27   <input type="hidden" name="uid"     value="$RANDOM$">
28   <input type="hidden" name="comment" value="!SHORTMAIL!">
29   <table>
30     <tr><td>your e-mail address:
31         <td><input type="text"     name="from" size="80" value="">
32     </tr>
33     <tr><td>your <a href="/FAQ/user.html#What_is_the__auth_ID">auth-ID</a>(*):
34         <td><input type="password" name="id"   size="16" value="">
35     </tr>
36     <tr><td>your file:
37         <td><input type="file"     name="file" size="80" value="">
38     </tr>
39   </table> 
40   <p>
41   <input type="submit" value="submit">
42 </form>
43 <p>
44 <p><hr><p>
45 After "submit" you will see an upload progress bar 
46 (if you have javascript enabled and popups allowed).<br>
47 After the end a download URL will be shown.
48 <p>
49 You can also use the <a href="/fup">regular upload form</a> 
50 (with more features).
51 <p>
52 <em>NOTE: Only Firefox or Google Chrome can upload files > 2 GB!</em><br>
53 <p><hr><p>
54 (*) Please <a href="/fur">register yourself</a> if you do not have an
55     <a href="/FAQ/user.html#What_is_the__auth_ID">auth-ID</a> yet.
56 <p><hr><p>
57 <address>Contact: <a href="mailto:$SERVER_ADMIN$">fexmaster</a></address>
58 </body>
59 </html>