[회원가입 페이지 추가]

This commit is contained in:
2025-08-13 15:39:40 +09:00
parent 61d947a644
commit 939d345c47
2 changed files with 341 additions and 0 deletions

View File

@@ -40,6 +40,14 @@
<p class="test-account">관리자: admin / stam1201!</p>
<p class="test-account">일반 사용자: user / stam1201!</p>
</div>
<!-- 회원 가입 페이지로 이동 링크 -->
<div class="register-link">
<p>
계정이 없으신가요?
<NuxtLink to="/register" class="link-text">회원 가입하기</NuxtLink>
</p>
</div>
</div>
</div>
</div>
@@ -210,6 +218,31 @@ async function signIn() {
font-family: monospace;
}
.register-link {
margin-top: 16px;
text-align: center;
padding: 16px;
background: #f8fafc;
border-radius: 6px;
border: 1px solid #e2e8f0;
}
.register-link p {
margin: 0;
font-size: 0.9rem;
color: #64748b;
}
.link-text {
color: #4666e5;
text-decoration: none;
font-weight: 500;
}
.link-text:hover {
text-decoration: underline;
}
@media (max-width: 600px) {
.login-card {
padding: 24px 8px 20px 8px;