123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <!doctype html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>WiFi Upload/Download</title>
- <link rel="stylesheet" href="style.css">
- <script type="text/javascript" src="jquery-1.10.1.min.js"></script>
- <script type="text/javascript" src="jquery.ui.widget.js"></script>
- <script type="text/javascript" src="jquery.iframe-transport.js"></script>
- <script type="text/javascript" src="jquery.fileupload.js"></script>
- <script type="text/javascript" src="main.js"></script>
- </head>
- <body>
- <div id="header">
- <div class="nav">
- <a class="btn linkBtn" href="http://www.videolan.org" target="_blank"><div class="icon"></div></a>
- <div class="btn uploadBtn">
- <input id="fileupload" type="file" name="files[]" data-url="upload.json" multiple>
- +
- </div>
- </div>
- </div>
- <div class="main">
- <div class="uploads">
- <ul></ul>
- </div>
- <div class="messageUpload">
- <h1>Drop files</h1>
- <p>
- Drop files in the window to add them to your iOS device. <br>
- Or click on the "+" button to use the file picker dialog.
- </p>
- </div>
- <hr>
- <div class="messageDownload">
- <h1>Download files </h1>
- <p>
- Just click the file you want to download from your iOS device.
- </p>
- </div>
- <ul class="downloads">
- %%FILES%%
- </ul>
- <div id="footer">
- <p>VLC for iOS is free, open-source software published by <a href="http://www.videolan.org" target="_blank">VideoLAN</a>. <br />Modification and redistribution is subject to both the <a href="http://opensource.org/licenses/GPL-2.0" target="_blank">GPLv2 (or later)</a> and the <a href="http://opensource.org/licenses/MPL-2.0" target="_blank">MPLv2</a> as well as further rights reserved by the VideoLAN association.<br />You can find the sources to this application <a href="http://git.videolan.org/?p=vlc-ports/ios.git;a=summary" target="_blank">online</a> and more information about licensing in the About dialog included within the app.<br />VLC media player and VideoLAN are trademarks of the VideoLAN Association.</p>
- </div>
- </div>
- </body>
- </html>
|