rbo-player / templates /index.html
Peeble's picture
Create templates/index.html
62020ab verified
raw
history blame contribute delete
413 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Homepage</title>
<script>
setTimeout(function() {
window.location.href = '/upload.html';
}, 2000);
</script>
</head>
<body>
<h1>Welcome to the RBO Player</h1>
<p>Redirecting to the upload page...</p>
</body>
</html>