AcaMate_Web/Program/Views/Project/Auth.razor
Seonkyu.kim 9167e2a9d6 [] 동작 로직 수정
1. 퍼블리시 동작 로직 수정
2. 쿠키 설정 동작 로직 추가
2025-05-26 17:44:13 +09:00

10 lines
560 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 @onclick = "KakaoLogin" class="bg-blue-600 text-white px-4 py-2 rounded hover:bg-blue-700 w-full">로그인</button>
</div>
</div>