| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175 |
- <!DOCTYPE html>
- <html lang="zh-CN">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>登录 - TG Live Game</title>
- <script src="https://cdn.tailwindcss.com"></script>
- <script>
- tailwind.config = {
- theme: {
- extend: {
- fontFamily: {
- sans: ['Inter', 'system-ui', '-apple-system', 'sans-serif'],
- },
- colors: {
- brand: {
- DEFAULT: '#000000',
- hover: '#1a1a1a',
- }
- }
- }
- }
- }
- </script>
- <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
- <style>
- /* Custom focus styles */
- input:focus {
- box-shadow: none;
- }
- /* Smooth transitions */
- * {
- transition-property: color, background-color, border-color, opacity;
- transition-duration: 150ms;
- transition-timing-function: ease-in-out;
- }
- </style>
- </head>
- <body class="min-h-screen bg-white font-sans antialiased">
- <!-- Mobile: Single column | Desktop: Split screen -->
- <div class="min-h-screen flex flex-col lg:flex-row">
- <!-- Left Panel - Hidden on mobile, visible on lg+ -->
- <div class="hidden lg:flex lg:w-1/2 xl:w-2/5 bg-gradient-to-br from-gray-900 via-gray-800 to-black p-8 xl:p-12 flex-col justify-between">
- <!-- Logo -->
- <div class="flex items-center gap-3">
- <div class="w-10 h-10 bg-white rounded-lg flex items-center justify-center">
- <svg class="w-5 h-5 text-black" fill="none" stroke="currentColor" viewBox="0 0 24 24">
- <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 10l4.553-2.276A1 1 0 0121 8.618v6.764a1 1 0 01-1.447.894L15 14M5 18h8a2 2 0 002-2V8a2 2 0 00-2-2H5a2 2 0 00-2 2v8a2 2 0 002 2z"/>
- </svg>
- </div>
- <span class="text-white font-semibold text-lg">TG Live Game</span>
- </div>
- <!-- Center content -->
- <div class="flex-1 flex flex-col justify-center">
- <h2 class="text-3xl xl:text-4xl font-bold text-white mb-4 leading-tight">
- 开启你的<br>直播之旅
- </h2>
- <p class="text-gray-400 text-base xl:text-lg max-w-sm">
- 加入数万创作者,打造属于你的直播舞台
- </p>
- <!-- Stats -->
- <div class="flex gap-8 mt-10">
- <div>
- <div class="text-2xl xl:text-3xl font-bold text-white">50K+</div>
- <div class="text-gray-500 text-sm">创作者</div>
- </div>
- <div>
- <div class="text-2xl xl:text-3xl font-bold text-white">99.9%</div>
- <div class="text-gray-500 text-sm">稳定性</div>
- </div>
- <div>
- <div class="text-2xl xl:text-3xl font-bold text-white">24/7</div>
- <div class="text-gray-500 text-sm">技术支持</div>
- </div>
- </div>
- </div>
- <!-- Footer -->
- <div class="text-gray-600 text-sm">
- © 2025 TG Live Game. All rights reserved.
- </div>
- </div>
- <!-- Right Panel - Login Form -->
- <div class="flex-1 flex items-center justify-center p-6 sm:p-8 md:p-12 lg:p-16">
- <div class="w-full max-w-sm sm:max-w-md">
- <!-- Mobile Logo - Only visible on mobile -->
- <div class="flex items-center gap-2 mb-8 sm:mb-12 lg:hidden">
- <div class="w-8 h-8 sm:w-10 sm:h-10 bg-black rounded-lg flex items-center justify-center">
- <svg class="w-4 h-4 sm:w-5 sm:h-5 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
- <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 10l4.553-2.276A1 1 0 0121 8.618v6.764a1 1 0 01-1.447.894L15 14M5 18h8a2 2 0 002-2V8a2 2 0 00-2-2H5a2 2 0 00-2 2v8a2 2 0 002 2z"/>
- </svg>
- </div>
- <span class="font-semibold text-black text-base sm:text-lg">TG Live</span>
- </div>
- <!-- Title -->
- <div class="mb-8 sm:mb-10 lg:mb-12">
- <h1 class="text-3xl sm:text-4xl lg:text-5xl font-extrabold text-black tracking-tight leading-none mb-2 sm:mb-3">
- 登录
- </h1>
- <p class="text-gray-400 text-base sm:text-lg">欢迎回来</p>
- </div>
- <!-- Form -->
- <form class="space-y-6 sm:space-y-8">
- <div>
- <label class="block text-sm font-medium text-gray-700 mb-2 sm:hidden">用户名</label>
- <input type="text" placeholder="用户名"
- class="w-full px-0 py-3 sm:py-4 bg-transparent border-b border-gray-200 text-black text-base sm:text-lg placeholder-gray-300 focus:outline-none focus:border-black">
- </div>
- <div>
- <label class="block text-sm font-medium text-gray-700 mb-2 sm:hidden">密码</label>
- <input type="password" placeholder="密码"
- class="w-full px-0 py-3 sm:py-4 bg-transparent border-b border-gray-200 text-black text-base sm:text-lg placeholder-gray-300 focus:outline-none focus:border-black">
- </div>
- <div class="flex items-center justify-between text-sm sm:text-base">
- <label class="flex items-center text-gray-500 cursor-pointer group">
- <input type="checkbox" class="w-4 h-4 sm:w-5 sm:h-5 rounded border-gray-300 text-black focus:ring-black focus:ring-offset-0 mr-2 sm:mr-3 cursor-pointer">
- <span class="group-hover:text-gray-700">记住我</span>
- </label>
- <a href="#" class="text-black font-medium hover:underline underline-offset-4">忘记密码?</a>
- </div>
- <button type="submit" class="w-full py-3.5 sm:py-4 bg-black hover:bg-gray-900 active:bg-gray-800 text-white font-semibold rounded-none transition-all cursor-pointer text-base sm:text-lg touch-manipulation">
- 登录
- </button>
- </form>
- <!-- Divider -->
- <div class="flex items-center my-8 sm:my-10">
- <div class="flex-1 h-px bg-gray-200"></div>
- <span class="px-4 sm:px-6 text-gray-300 text-xs sm:text-sm uppercase tracking-wider">或</span>
- <div class="flex-1 h-px bg-gray-200"></div>
- </div>
- <!-- Social Login -->
- <div class="space-y-3">
- <button class="w-full py-3 sm:py-3.5 border border-gray-200 hover:border-black hover:bg-gray-50 text-black font-medium flex items-center justify-center gap-2 sm:gap-3 cursor-pointer touch-manipulation">
- <svg class="w-4 h-4 sm:w-5 sm:h-5" viewBox="0 0 24 24">
- <path fill="#4285F4" d="M22.56 12.25c0-.78-.07-1.53-.2-2.25H12v4.26h5.92c-.26 1.37-1.04 2.53-2.21 3.31v2.77h3.57c2.08-1.92 3.28-4.74 3.28-8.09z"/>
- <path fill="#34A853" d="M12 23c2.97 0 5.46-.98 7.28-2.66l-3.57-2.77c-.98.66-2.23 1.06-3.71 1.06-2.86 0-5.29-1.93-6.16-4.53H2.18v2.84C3.99 20.53 7.7 23 12 23z"/>
- <path fill="#FBBC05" d="M5.84 14.09c-.22-.66-.35-1.36-.35-2.09s.13-1.43.35-2.09V7.07H2.18C1.43 8.55 1 10.22 1 12s.43 3.45 1.18 4.93l2.85-2.22.81-.62z"/>
- <path fill="#EA4335" d="M12 5.38c1.62 0 3.06.56 4.21 1.64l3.15-3.15C17.45 2.09 14.97 1 12 1 7.7 1 3.99 3.47 2.18 7.07l3.66 2.84c.87-2.6 3.3-4.53 6.16-4.53z"/>
- </svg>
- <span class="text-sm sm:text-base">使用 Google 继续</span>
- </button>
- <button class="w-full py-3 sm:py-3.5 border border-gray-200 hover:border-black hover:bg-gray-50 text-black font-medium flex items-center justify-center gap-2 sm:gap-3 cursor-pointer touch-manipulation">
- <svg class="w-4 h-4 sm:w-5 sm:h-5" viewBox="0 0 24 24" fill="currentColor">
- <path d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z"/>
- </svg>
- <span class="text-sm sm:text-base">使用 GitHub 继续</span>
- </button>
- </div>
- <!-- Footer -->
- <p class="text-center text-gray-400 text-sm sm:text-base mt-8 sm:mt-12">
- 还没有账户?<a href="#" class="text-black font-medium hover:underline underline-offset-4">注册</a>
- </p>
- <!-- Mobile Footer - Only visible on mobile -->
- <p class="text-center text-gray-400 text-xs mt-8 lg:hidden">
- © 2025 TG Live Game
- </p>
- </div>
- </div>
- </div>
- </body>
- </html>
|