Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Authentication - StreamSnatcher Pro</title> | |
| <link rel="icon" type="image/x-icon" href="/static/favicon.ico"> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> | |
| <script src="https://unpkg.com/feather-icons"></script> | |
| <style> | |
| @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap'); | |
| body { | |
| font-family: 'Inter', sans-serif; | |
| } | |
| .gradient-bg { | |
| background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); | |
| } | |
| .dark .gradient-bg { | |
| background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%); | |
| } | |
| </style> | |
| </head> | |
| <body class="min-h-screen gradient-bg flex items-center justify-center p-4"> | |
| <div class="max-w-md w-full"> | |
| <!-- Auth Card --> | |
| <div class="bg-white/10 backdrop-blur-lg rounded-2xl p-8 shadow-2xl border border-white/20"> | |
| <div class="text-center mb-8"> | |
| <i data-feather="shield" class="w-12 h-12 text-white mx-auto mb-4"></i> | |
| <h2 class="text-2xl font-bold text-white">Platform Authentication</h2> | |
| <p class="text-white/70 mt-2">Login to your OTT platform account</p> | |
| </div> | |
| <!-- Platform Selection --> | |
| <div class="mb-6"> | |
| <label class="block text-white text-sm font-medium mb-3">Select Platform</label> | |
| <select class="w-full px-4 py-3 rounded-lg bg-white/10 border border-white/20 text-white focus:outline-none focus:ring-2 focus:ring-white/50"> | |
| <option value="" disabled selected>Choose a platform</option> | |
| <option value="jiocinema">JioCinema</option> | |
| <option value="hotstar">Disney+ Hotstar</option> | |
| <option value="mxplayer">MX Player</option> | |
| <option value="zee5">Zee5</option> | |
| </select> | |
| </div> | |
| <!-- Login Form --> | |
| <form class="space-y-4"> | |
| <div> | |
| <label class="block text-white text-sm font-medium mb-2">Email / Username</label> | |
| <input type="text" | |
| class="w-full px-4 py-3 rounded-lg bg-white/10 border border-white/20 text-white placeholder-white/50 focus:outline-none focus:ring-2 focus:ring-white/50" | |
| placeholder="Enter your email or username"> | |
| </div> | |
| <div> | |
| <label class="block text-white text-sm font-medium mb-2">Password</label> | |
| <input type="password" | |
| class="w-full px-4 py-3 rounded-lg bg-white/10 border border-white/20 text-white placeholder-white/50 focus:outline-none focus:ring-2 focus:ring-white/50" | |
| placeholder="Enter your password"> | |
| </div> | |
| <div class="flex items-center justify-between"> | |
| <label class="flex items-center space-x-2 text-white text-sm"> | |
| <input type="checkbox" class="rounded bg-white/10 border-white/20"> | |
| <span>Remember me</span> | |
| </label> | |
| <a href="#" class="text-white/70 hover:text-white text-sm transition-colors duration-200">Forgot password?</a> | |
| </div> | |
| <button type="submit" class="w-full py-3 bg-white/20 hover:bg-white/30 text-white rounded-lg transition-colors duration-200 font-medium flex items-center justify-center space-x-2"> | |
| <i data-feather="log-in" class="w-5 h-5"></i> | |
| <span>Login to Platform</span> | |
| </button> | |
| </form> | |
| <!-- Alternative Auth Methods --> | |
| <div class="mt-6 pt-6 border-t border-white/20"> | |
| <p class="text-center text-white/70 text-sm mb-4">Or authenticate using</p> | |
| <div class="grid grid-cols-2 gap-3"> | |
| <button class="p-3 rounded-lg bg-white/10 hover:bg-white/20 border border-white/20 text-white transition-colors duration-200 flex items-center justify-center space-x-2"> | |
| <i data-feather="smartphone" class="w-5 h-5"></i> | |
| <span class="text-sm">OTP</span> | |
| </button> | |
| <button class="p-3 rounded-lg bg-white/10 hover:bg-white/20 border border-white/20 text-white transition-colors duration-200 flex items-center justify-center space-x-2"> | |
| <i data-feather="qrcode" class="w-5 h-5"></i> | |
| <span class="text-sm">QR Code</span> | |
| </button> | |
| </div> | |
| </div> | |
| <!-- Back to Home --> | |
| <div class="mt-6 text-center"> | |
| <a href="index.html" class="text-white/70 hover:text-white transition-colors duration-200 flex items-center justify-center space-x-2"> | |
| <i data-feather="arrow-left" class="w-4 h-4"></i> | |
| <span>Back to Downloader</span> | |
| </a> | |
| </div> | |
| </div> | |
| <!-- Security Notice --> | |
| <div class="mt-6 text-center"> | |
| <p class="text-white/50 text-sm"> | |
| <i data-feather="lock" class="w-4 h-4 inline mr-1"></i> | |
| Your credentials are encrypted and never stored | |
| </p> | |
| </div> | |
| </div> | |
| <script> | |
| // Initialize Feather Icons | |
| feather.replace(); | |
| </script> | |
| </body> | |
| </html> | |