split-03-testimonial.html 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  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>登录 - 分屏用户评价</title>
  7. <script src="https://cdn.tailwindcss.com"></script>
  8. <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
  9. <style>body { font-family: 'Inter', sans-serif; }</style>
  10. </head>
  11. <body class="min-h-screen bg-slate-50">
  12. <div class="min-h-screen flex">
  13. <!-- Left Panel - Testimonial -->
  14. <div class="hidden lg:flex lg:w-1/2 bg-indigo-600 relative overflow-hidden">
  15. <div class="absolute inset-0 opacity-10">
  16. <svg class="w-full h-full" viewBox="0 0 100 100" preserveAspectRatio="none">
  17. <defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="white" stroke-width="0.5"/></pattern></defs>
  18. <rect width="100" height="100" fill="url(#grid)"/>
  19. </svg>
  20. </div>
  21. <div class="relative z-10 flex flex-col justify-between p-12 w-full">
  22. <div class="flex items-center gap-3">
  23. <div class="w-10 h-10 bg-white/20 backdrop-blur-sm rounded-lg flex items-center justify-center">
  24. <svg class="w-5 h-5 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
  25. <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"/>
  26. </svg>
  27. </div>
  28. <span class="text-white font-semibold text-lg">TG Live Game</span>
  29. </div>
  30. <div class="max-w-lg">
  31. <svg class="w-12 h-12 text-white/30 mb-6" fill="currentColor" viewBox="0 0 24 24">
  32. <path d="M14.017 21v-7.391c0-5.704 3.731-9.57 8.983-10.609l.995 2.151c-2.432.917-3.995 3.638-3.995 5.849h4v10h-9.983zm-14.017 0v-7.391c0-5.704 3.748-9.57 9-10.609l.996 2.151c-2.433.917-3.996 3.638-3.996 5.849h3.983v10h-9.983z"/>
  33. </svg>
  34. <p class="text-2xl text-white font-medium leading-relaxed mb-8">
  35. "TG Live 彻底改变了我的直播体验。界面简洁,功能强大,让我可以专注于内容创作而不是技术问题。"
  36. </p>
  37. <div class="flex items-center gap-4">
  38. <div class="w-14 h-14 rounded-full bg-white/20 flex items-center justify-center text-white text-xl font-bold">
  39. </div>
  40. <div>
  41. <div class="text-white font-semibold">张明</div>
  42. <div class="text-indigo-200">游戏主播 · 100万粉丝</div>
  43. </div>
  44. </div>
  45. </div>
  46. <div class="flex gap-2">
  47. <div class="w-3 h-3 rounded-full bg-white"></div>
  48. <div class="w-3 h-3 rounded-full bg-white/30"></div>
  49. <div class="w-3 h-3 rounded-full bg-white/30"></div>
  50. </div>
  51. </div>
  52. </div>
  53. <!-- Right Panel -->
  54. <div class="w-full lg:w-1/2 flex items-center justify-center p-8">
  55. <div class="w-full max-w-md">
  56. <div class="lg:hidden flex items-center gap-3 mb-8">
  57. <div class="w-10 h-10 bg-indigo-600 rounded-lg flex items-center justify-center">
  58. <svg class="w-5 h-5 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24">
  59. <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"/>
  60. </svg>
  61. </div>
  62. <span class="text-gray-900 font-semibold text-lg">TG Live</span>
  63. </div>
  64. <div class="mb-10">
  65. <h2 class="text-3xl font-bold text-gray-900 mb-2">欢迎回来</h2>
  66. <p class="text-gray-500">登录您的账户以继续</p>
  67. </div>
  68. <form class="space-y-5">
  69. <div>
  70. <label class="block text-gray-700 text-sm font-medium mb-2">用户名或邮箱</label>
  71. <input type="text" placeholder="请输入用户名或邮箱"
  72. class="w-full px-4 py-3.5 bg-white border border-gray-200 rounded-xl text-gray-900 placeholder-gray-400 focus:outline-none focus:ring-2 focus:ring-indigo-500 focus:border-transparent transition-all">
  73. </div>
  74. <div>
  75. <label class="block text-gray-700 text-sm font-medium mb-2">密码</label>
  76. <input type="password" placeholder="请输入密码"
  77. class="w-full px-4 py-3.5 bg-white border border-gray-200 rounded-xl text-gray-900 placeholder-gray-400 focus:outline-none focus:ring-2 focus:ring-indigo-500 focus:border-transparent transition-all">
  78. </div>
  79. <div class="flex items-center justify-between">
  80. <label class="flex items-center text-gray-600 cursor-pointer">
  81. <input type="checkbox" class="w-4 h-4 rounded border-gray-300 text-indigo-600 focus:ring-indigo-500 mr-2">
  82. <span class="text-sm">记住我</span>
  83. </label>
  84. <a href="#" class="text-sm text-indigo-600 hover:text-indigo-700 font-medium">忘记密码?</a>
  85. </div>
  86. <button type="submit" class="w-full py-4 bg-indigo-600 hover:bg-indigo-700 text-white font-semibold rounded-xl transition-colors cursor-pointer">
  87. 登 录
  88. </button>
  89. </form>
  90. <div class="flex items-center my-8">
  91. <div class="flex-1 h-px bg-gray-200"></div>
  92. <span class="px-4 text-gray-400 text-sm">或使用</span>
  93. <div class="flex-1 h-px bg-gray-200"></div>
  94. </div>
  95. <button class="w-full py-3.5 border border-gray-200 rounded-xl hover:bg-gray-50 transition-colors flex items-center justify-center gap-3 cursor-pointer">
  96. <svg class="w-5 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>
  97. <span class="text-gray-700 font-medium">使用 Google 继续</span>
  98. </button>
  99. <p class="text-center text-gray-500 text-sm mt-8">
  100. 还没有账户?<a href="#" class="text-indigo-600 hover:text-indigo-700 font-medium">免费注册</a>
  101. </p>
  102. </div>
  103. </div>
  104. </div>
  105. </body>
  106. </html>