AcaMate_Web/Program/Views/Project/Auth.razor
Seonkyu.kim 5f27c1c90f [] 서버 FRONT 화면 띄우기 점검
서버에서 FRONT 화면 제대로 나오는지 확인하기 위한 푸시
2025-05-16 14:27:28 +09:00

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>