index.html 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>WiFi Upload/Download</title>
  6. <link rel="stylesheet" href="style.css">
  7. <script type="text/javascript" src="jquery-1.10.1.min.js"></script>
  8. <script type="text/javascript" src="jquery.ui.widget.js"></script>
  9. <script type="text/javascript" src="jquery.iframe-transport.js"></script>
  10. <script type="text/javascript" src="jquery.fileupload.js"></script>
  11. <script type="text/javascript" src="main.js"></script>
  12. </head>
  13. <body>
  14. <div id="header">
  15. <div class="nav">
  16. <a class="btn linkBtn" href="http://www.videolan.org" target="_blank"><div class="icon"></div></a>
  17. <div class="btn uploadBtn">
  18. <input id="fileupload" type="file" name="files[]" data-url="upload.json" multiple>
  19. +
  20. </div>
  21. </div>
  22. </div>
  23. <div class="main">
  24. <div class="uploads">
  25. <ul></ul>
  26. </div>
  27. <div class="messageUpload">
  28. <h1>Drop files</h1>
  29. <p>
  30. Drop files in the window to add them to your iOS device. <br>
  31. Or click on the "+" button to use the file picker dialog.
  32. </p>
  33. </div>
  34. <hr>
  35. <div class="messageDownload">
  36. <h1>Download files </h1>
  37. <p>
  38. Just click the file you want to download from your iOS device.
  39. </p>
  40. </div>
  41. <ul class="downloads">
  42. %%FILES%%
  43. </ul>
  44. <div id="footer">
  45. <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>
  46. </div>
  47. </div>
  48. </body>
  49. </html>