index.html 1.1 KB

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. <form action="upload.html" method="post" enctype="multipart/form-data" accept-charset="utf-8">
  16. <input type="file" name="upload1"><br/>
  17. <br />
  18. <input type="submit" value="Submit">
  19. </form>
  20. <footer>
  21. <p>
  22. 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.
  23. </p>
  24. </footer>
  25. </div>
  26. </body>
  27. </html>