upload.html 1006 B

123456789101112131415161718192021222324252627282930
  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="reset.css">
  7. <link rel="stylesheet" href="style.css">
  8. </head>
  9. <body>
  10. <div class="container">
  11. <header>
  12. <div id="appIcon"></div>
  13. <h1>VLC for iOS</h1>
  14. </header>
  15. <div>
  16. <span id="uploadCompleted">Upload completed!</span>
  17. <a href="index.html" id="uploadMore">Upload more Files</a>
  18. </div>
  19. <footer>
  20. <p>
  21. 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 $LICENSE and 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/ios2.git;a=summary" target="_blank">online</a> and more information about licensing in the About dialog included within the app.
  22. </p>
  23. </footer>
  24. </div>
  25. </body>
  26. </html>