10 lines
536 B
Plaintext
10 lines
536 B
Plaintext
@page "/auth"
|
|
|
|
<div class="flex flex-col items-center justify-center min-h-screen bg-gray-100">
|
|
<h1 class="text-2xl font-bold mb-4">로그인</h1>
|
|
<div class="w-full max-w-xs">
|
|
<input type="text" placeholder="아이디" class="mb-4 p-2 border border-gray-300 rounded w-full" />
|
|
<input type="password" placeholder="비밀번호" class="mb-4 p-2 border border-gray-300 rounded w-full" />
|
|
<button class="bg-blue-600 text-white px-4 py-2 rounded hover:bg-blue-700 w-full">로그인</button>
|
|
</div>
|
|
</div> |