| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <!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&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-neutral-950">
- <div class="w-full max-w-sm">
- <!-- Logo -->
- <div class="text-center mb-10">
- <div class="flex items-center justify-center gap-2 mb-8">
- <div class="w-8 h-8 bg-white rounded-lg flex items-center justify-center">
- <svg class="w-4 h-4 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">TG Live</span>
- </div>
- <h1 class="text-3xl font-bold text-white mb-2">欢迎回来</h1>
- <p class="text-neutral-500">登录您的账户</p>
- </div>
- <!-- Form -->
- <form class="space-y-4">
- <div>
- <input type="text" placeholder="用户名"
- class="w-full px-4 py-3.5 bg-neutral-900 border border-neutral-800 rounded-lg text-white placeholder-neutral-500 focus:outline-none focus:ring-1 focus:ring-white focus:border-white transition-all">
- </div>
- <div>
- <input type="password" placeholder="密码"
- class="w-full px-4 py-3.5 bg-neutral-900 border border-neutral-800 rounded-lg text-white placeholder-neutral-500 focus:outline-none focus:ring-1 focus:ring-white focus:border-white transition-all">
- </div>
- <div class="flex items-center justify-between text-sm">
- <label class="flex items-center text-neutral-400 cursor-pointer">
- <input type="checkbox" class="w-4 h-4 rounded bg-neutral-900 border-neutral-700 text-white focus:ring-white mr-2">
- 记住我
- </label>
- <a href="#" class="text-neutral-400 hover:text-white transition-colors">忘记密码?</a>
- </div>
- <button type="submit" class="w-full py-3.5 bg-white hover:bg-neutral-200 text-black font-medium rounded-lg transition-colors cursor-pointer">
- 登录
- </button>
- </form>
- <!-- Divider -->
- <div class="flex items-center my-8">
- <div class="flex-1 h-px bg-neutral-800"></div>
- <span class="px-4 text-neutral-600 text-sm">或</span>
- <div class="flex-1 h-px bg-neutral-800"></div>
- </div>
- <!-- Social -->
- <div class="grid grid-cols-2 gap-3">
- <button class="py-3 bg-neutral-900 border border-neutral-800 rounded-lg hover:bg-neutral-800 transition-colors flex items-center justify-center gap-2 cursor-pointer">
- <svg class="w-5 h-5" viewBox="0 0 24 24"><path fill="#fff" 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>
- </button>
- <button class="py-3 bg-neutral-900 border border-neutral-800 rounded-lg hover:bg-neutral-800 transition-colors flex items-center justify-center gap-2 cursor-pointer">
- <svg class="w-5 h-5 text-white" 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>
- </button>
- </div>
- <!-- Footer -->
- <p class="text-center text-neutral-500 text-sm mt-8">
- 还没有账户?<a href="#" class="text-white font-medium hover:underline">注册</a>
- </p>
- </div>
- </body>
- </html>
|