CoolFace
Apppublic

vikash8523/video-explainer-pro

sourceHugging Faceupdated 8mo agoView on Hugging Face
0likes
index.html22 linesDownload Raw Back to root
1 2<!DOCTYPE html>3<html lang="en">4<head>5    <meta charset="UTF-8">6    <meta name="viewport" content="width=device-width, initial-scale=1.0">7    <title>Video Explainer Pro</title>8    <link rel="icon" type="image/x-icon" href="/static/favicon.ico">9    <link rel="stylesheet" href="style.css">10    <script src="https://cdn.tailwindcss.com"></script>11</head>12<body class="bg-gray-100 min-h-screen flex items-center justify-center">13    <div class="text-center">14        <h1 class="text-4xl font-bold text-gray-800 mb-4">Video Explainer Pro</h1>15        <p class="text-gray-600 mb-8">Admin access required for content management</p>16        <a href="login.html" class="bg-gradient-to-r from-blue-500 to-purple-600 text-white py-3 px-6 rounded-lg font-medium hover:from-blue-600 hover:to-purple-700 transition duration-300 inline-block">17            Access Admin Dashboard18        </a>19    </div>20</body>21</html>22