123456789101112131415161718192021222324252627282930 |
- <!doctype html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>VLC for iOS File Uploader</title>
- <link rel="stylesheet" href="reset.css">
- <link rel="stylesheet" href="style.css">
- </head>
- <body>
- <div class="container">
- <header>
- <div id="appIcon"></div>
- <h1>VLC for iOS</h1>
- </header>
- <div>
- <span id="uploadCompleted">Upload completed!</span>
- <a href="index.html" id="uploadMore">Upload more Files</a>
- </div>
- <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 $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.
- </p>
- </footer>
- </div>
- </body>
- </html>
|