index.html 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>VLC for iOS file uploader</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. Upload files
  20. </div>
  21. </div>
  22. </div>
  23. <div class="main">
  24. <div class="uploads">
  25. <ul></ul>
  26. </div>
  27. <div class="message">
  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 "Upload file" button to use the file dialog window.
  32. </p>
  33. </div>
  34. <div id="footer">
  35. <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.</p>
  36. </div>
  37. </div>
  38. </body>
  39. </html>