Browse Source

Proper indentation on the HTML file upload page

Signed-off-by: Felix Paul Kühne <fkuehne@videolan.org>
Romain Goyet 12 years ago
parent
commit
316071a544
1 changed files with 24 additions and 24 deletions
  1. 24 24
      Resources/web/index.html

+ 24 - 24
Resources/web/index.html

@@ -1,29 +1,29 @@
 <!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>
+  <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>
 
-		<form action="upload.html" method="post" enctype="multipart/form-data" accept-charset="utf-8">
-			<input type="file" name="upload1"><br/>
-            <br />
-			<input type="submit" value="Submit">
-        </form>
+      <form action="upload.html" method="post" enctype="multipart/form-data" accept-charset="utf-8">
+        <input type="file" name="upload1"><br/>
+        <br />
+        <input type="submit" value="Submit">
+      </form>
 
-        <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>
+      <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>