v0.1.48 - 인증 메일 재전송과 TODO 정리

This commit is contained in:
2026-04-24 11:47:58 +09:00
parent 317a2ce8af
commit 0013f03bb3
7 changed files with 59 additions and 47 deletions

View File

@@ -25,6 +25,7 @@ const props = defineProps({
const emit = defineEmits([
'close',
'submit',
'resend-verification',
'switch-mode',
'update:field',
])
@@ -210,6 +211,16 @@ function getSubmitLabel(mode, busy) {
비밀번호를 잊으셨나요?
</button>
<button
v-if="mode === 'login'"
type="button"
class="mt-3 w-full text-center text-xs font-bold tracking-[0.14em] text-stone-500 underline underline-offset-4 transition hover:text-stone-900"
:disabled="busy"
@click="emit('resend-verification')"
>
이메일 인증 메일 다시 보내기
</button>
<div class="mt-5 flex items-center justify-center gap-2 border-t border-stone-300/70 pt-4">
<p class="text-sm font-semibold text-stone-600">
{{ mode === 'signup' ? '이미 계정이 있나요?' : '계정 화면으로 돌아갈까요?' }}