login-responsive.html 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>登录 - TG Live Game</title>
  7. <script src="https://cdn.tailwindcss.com"></script>
  8. <script>
  9. tailwind.config = {
  10. theme: {
  11. extend: {
  12. fontFamily: {
  13. sans: ['Inter', 'system-ui', '-apple-system', 'sans-serif'],
  14. },
  15. colors: {
  16. brand: {
  17. DEFAULT: '#000000',
  18. hover: '#1a1a1a',
  19. }
  20. }
  21. }
  22. }
  23. }
  24. </script>
  25. <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
  26. <style>
  27. /* Custom focus styles */
  28. input:focus {
  29. box-shadow: none;
  30. }
  31. /* Smooth transitions */
  32. * {
  33. transition-property: color, background-color, border-color, opacity;
  34. transition-duration: 150ms;
  35. transition-timing-function: ease-in-out;
  36. }
  37. </style>
  38. </head>
  39. <body class="min-h-screen bg-white font-sans antialiased">
  40. <!-- Mobile: Single column | Desktop: Split screen -->
  41. <div class="min-h-screen flex flex-col lg:flex-row">
  42. <!-- Left Panel - Hidden on mobile, visible on lg+ -->
  43. <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">
  44. <!-- Logo -->
  45. <div class="flex items-center gap-3">
  46. <div class="w-10 h-10 bg-white rounded-lg flex items-center justify-center">
  47. <svg class="w-5 h-5 text-black" fill="none" stroke="currentColor" viewBox="0 0 24 24">
  48. <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"/>
  49. </svg>
  50. </div>
  51. <span class="text-white font-semibold text-lg">TG Live Game</span>
  52. </div>
  53. <!-- Center content -->
  54. <div class="flex-1 flex flex-col justify-center">
  55. <h2 class="text-3xl xl:text-4xl font-bold text-white mb-4 leading-tight">
  56. 开启你的<br>直播之旅
  57. </h2>
  58. <p class="text-gray-400 text-base xl:text-lg max-w-sm">
  59. 加入数万创作者,打造属于你的直播舞台
  60. </p>
  61. <!-- Stats -->
  62. <div class="flex gap-8 mt-10">
  63. <div>
  64. <div class="text-2xl xl:text-3xl font-bold text-white">50K+</div>
  65. <div class="text-gray-500 text-sm">创作者</div>
  66. </div>
  67. <div>
  68. <div class="text-2xl xl:text-3xl font-bold text-white">99.9%</div>
  69. <div class="text-gray-500 text-sm">稳定性</div>
  70. </div>
  71. <div>
  72. <div class="text-2xl xl:text-3xl font-bold text-white">24/7</div>
  73. <div class="text-gray-500 text-sm">技术支持</div>
  74. </div>
  75. </div>
  76. </div>
  77. <!-- Footer -->
  78. <div class="text-gray-600 text-sm">
  79. &copy; 2025 TG Live Game. All rights reserved.
  80. </div>
  81. </div>
  82. <!-- Right Panel - Login Form -->
  83. <div class="flex-1 flex items-center justify-center p-6 sm:p-8 md:p-12 lg:p-16">
  84. <div class="w-full max-w-sm sm:max-w-md">
  85. <!-- Mobile Logo - Only visible on mobile -->
  86. <div class="flex items-center gap-2 mb-8 sm:mb-12 lg:hidden">
  87. <div class="w-8 h-8 sm:w-10 sm:h-10 bg-black rounded-lg flex items-center justify-center">
  88. <svg class="w-4 h-4 sm:w-5 sm:h-5 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
  89. <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"/>
  90. </svg>
  91. </div>
  92. <span class="font-semibold text-black text-base sm:text-lg">TG Live</span>
  93. </div>
  94. <!-- Title -->
  95. <div class="mb-8 sm:mb-10 lg:mb-12">
  96. <h1 class="text-3xl sm:text-4xl lg:text-5xl font-extrabold text-black tracking-tight leading-none mb-2 sm:mb-3">
  97. 登录
  98. </h1>
  99. <p class="text-gray-400 text-base sm:text-lg">欢迎回来</p>
  100. </div>
  101. <!-- Form -->
  102. <form class="space-y-6 sm:space-y-8">
  103. <div>
  104. <label class="block text-sm font-medium text-gray-700 mb-2 sm:hidden">用户名</label>
  105. <input type="text" placeholder="用户名"
  106. 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">
  107. </div>
  108. <div>
  109. <label class="block text-sm font-medium text-gray-700 mb-2 sm:hidden">密码</label>
  110. <input type="password" placeholder="密码"
  111. 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">
  112. </div>
  113. <div class="flex items-center justify-between text-sm sm:text-base">
  114. <label class="flex items-center text-gray-500 cursor-pointer group">
  115. <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">
  116. <span class="group-hover:text-gray-700">记住我</span>
  117. </label>
  118. <a href="#" class="text-black font-medium hover:underline underline-offset-4">忘记密码?</a>
  119. </div>
  120. <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">
  121. 登录
  122. </button>
  123. </form>
  124. <!-- Divider -->
  125. <div class="flex items-center my-8 sm:my-10">
  126. <div class="flex-1 h-px bg-gray-200"></div>
  127. <span class="px-4 sm:px-6 text-gray-300 text-xs sm:text-sm uppercase tracking-wider">或</span>
  128. <div class="flex-1 h-px bg-gray-200"></div>
  129. </div>
  130. <!-- Social Login -->
  131. <div class="space-y-3">
  132. <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">
  133. <svg class="w-4 h-4 sm:w-5 sm:h-5" viewBox="0 0 24 24">
  134. <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"/>
  135. <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"/>
  136. <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"/>
  137. <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"/>
  138. </svg>
  139. <span class="text-sm sm:text-base">使用 Google 继续</span>
  140. </button>
  141. <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">
  142. <svg class="w-4 h-4 sm:w-5 sm:h-5" viewBox="0 0 24 24" fill="currentColor">
  143. <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"/>
  144. </svg>
  145. <span class="text-sm sm:text-base">使用 GitHub 继续</span>
  146. </button>
  147. </div>
  148. <!-- Footer -->
  149. <p class="text-center text-gray-400 text-sm sm:text-base mt-8 sm:mt-12">
  150. 还没有账户?<a href="#" class="text-black font-medium hover:underline underline-offset-4">注册</a>
  151. </p>
  152. <!-- Mobile Footer - Only visible on mobile -->
  153. <p class="text-center text-gray-400 text-xs mt-8 lg:hidden">
  154. &copy; 2025 TG Live Game
  155. </p>
  156. </div>
  157. </div>
  158. </div>
  159. </body>
  160. </html>