| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- <!DOCTYPE html>
- <html lang="zh-CN">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>登录 - 极简大字体</title>
- <script src="https://cdn.tailwindcss.com"></script>
- <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
- <style>body { font-family: 'Inter', sans-serif; }</style>
- </head>
- <body class="min-h-screen flex items-center justify-center p-4 bg-white">
- <div class="w-full max-w-md">
- <!-- Logo -->
- <div class="flex items-center gap-2 mb-16">
- <div class="w-8 h-8 bg-black rounded flex items-center justify-center">
- <svg class="w-4 h-4 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">TG Live</span>
- </div>
- <!-- Title -->
- <div class="mb-12">
- <h1 class="text-5xl font-extrabold text-black tracking-tight leading-none mb-3">
- 登录
- </h1>
- <p class="text-gray-400 text-lg">欢迎回来</p>
- </div>
- <!-- Form -->
- <form class="space-y-8">
- <div>
- <input type="text" placeholder="用户名"
- class="w-full px-0 py-4 bg-transparent border-b border-gray-200 text-black text-lg placeholder-gray-300 focus:outline-none focus:border-black transition-colors">
- </div>
- <div>
- <input type="password" placeholder="密码"
- class="w-full px-0 py-4 bg-transparent border-b border-gray-200 text-black text-lg placeholder-gray-300 focus:outline-none focus:border-black transition-colors">
- </div>
- <div class="flex items-center justify-between">
- <label class="flex items-center text-gray-500 cursor-pointer">
- <input type="checkbox" class="w-5 h-5 rounded-sm border-gray-300 text-black focus:ring-black mr-3">
- <span>记住我</span>
- </label>
- <a href="#" class="text-black font-medium hover:underline underline-offset-4">忘记密码?</a>
- </div>
- <button type="submit" class="w-full py-4 bg-black hover:bg-gray-900 text-white font-semibold rounded-none transition-colors cursor-pointer text-lg">
- 登录
- </button>
- </form>
- <!-- Divider -->
- <div class="flex items-center my-10">
- <div class="flex-1 h-px bg-gray-200"></div>
- <span class="px-6 text-gray-300 text-sm uppercase tracking-wider">或</span>
- <div class="flex-1 h-px bg-gray-200"></div>
- </div>
- <!-- Social -->
- <div class="space-y-3">
- <button class="w-full py-3.5 border border-gray-200 hover:border-black text-black font-medium transition-colors flex items-center justify-center gap-3 cursor-pointer">
- <svg class="w-5 h-5" viewBox="0 0 24 24"><path fill="#000" d="M12.545,10.239v3.821h5.445c-0.712,2.315-2.647,3.972-5.445,3.972c-3.332,0-6.033-2.701-6.033-6.032s2.701-6.032,6.033-6.032c1.498,0,2.866,0.549,3.921,1.453l2.814-2.814C17.503,2.988,15.139,2,12.545,2C7.021,2,2.543,6.477,2.543,12s4.478,10,10.002,10c8.396,0,10.249-7.85,9.426-11.748L12.545,10.239z"/></svg>
- 使用 Google 继续
- </button>
- <button class="w-full py-3.5 border border-gray-200 hover:border-black text-black font-medium transition-colors flex items-center justify-center gap-3 cursor-pointer">
- <svg class="w-5 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-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>
- 使用 GitHub 继续
- </button>
- </div>
- <!-- Footer -->
- <p class="text-center text-gray-400 mt-12">
- 还没有账户?<a href="#" class="text-black font-medium hover:underline underline-offset-4">注册</a>
- </p>
- </div>
- </body>
- </html>
|