42 lines
1.7 KiB
HTML
42 lines
1.7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="zh-TW">
|
|
<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>
|
|
</head>
|
|
<body class="bg-gray-100 flex items-center justify-center min-h-screen">
|
|
|
|
<div class="bg-white rounded-2xl shadow-lg w-full max-w-sm p-8 space-y-6">
|
|
<!-- 美工圖 -->
|
|
<div class="flex justify-center">
|
|
<img src="https://source.unsplash.com/160x160/?technology,app" alt="App Logo" class="rounded-full w-32 h-32 object-cover" />
|
|
</div>
|
|
|
|
<!-- 標題 -->
|
|
<h2 class="text-2xl font-bold text-center text-gray-800">歡迎回來</h2>
|
|
|
|
<!-- 登入表單 -->
|
|
<form class="space-y-4">
|
|
<div>
|
|
<label for="email" class="block text-sm font-medium text-gray-700">電子信箱</label>
|
|
<input type="email" id="email" class="w-full mt-1 px-4 py-2 border rounded-lg shadow-sm focus:ring-indigo-500 focus:border-indigo-500" placeholder="you@example.com" required />
|
|
</div>
|
|
<div>
|
|
<label for="password" class="block text-sm font-medium text-gray-700">密碼</label>
|
|
<input type="password" id="password" class="w-full mt-1 px-4 py-2 border rounded-lg shadow-sm focus:ring-indigo-500 focus:border-indigo-500" placeholder="請輸入密碼" required />
|
|
</div>
|
|
|
|
<!-- 登入按鈕 -->
|
|
<button type="submit" class="w-full bg-indigo-600 text-white py-2 rounded-lg hover:bg-indigo-700 transition">登入</button>
|
|
</form>
|
|
|
|
<!-- 忘記密碼 -->
|
|
<div class="text-center">
|
|
<a href="#" class="text-sm text-indigo-600 hover:underline">忘記密碼?</a>
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
</html> |