Create templates/index.html
Browse files- templates/index.html +17 -0
templates/index.html
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>Homepage</title>
|
| 7 |
+
<script>
|
| 8 |
+
setTimeout(function() {
|
| 9 |
+
window.location.href = '/upload.html';
|
| 10 |
+
}, 2000);
|
| 11 |
+
</script>
|
| 12 |
+
</head>
|
| 13 |
+
<body>
|
| 14 |
+
<h1>Welcome to the RBO Player</h1>
|
| 15 |
+
<p>Redirecting to the upload page...</p>
|
| 16 |
+
</body>
|
| 17 |
+
</html>
|