비밀번호 재설정

This commit is contained in:
yoon 2025-02-10 10:27:53 +09:00
parent 58fdb1f673
commit de1a6e19c5

View File

@ -8,44 +8,43 @@
:useInputGroup="true" :useInputGroup="true"
@update:data="handleIdChange" @update:data="handleIdChange"
:value="id" :value="id"
:disabled="resetForm"
/> />
<template v-if="!resetForm">
<UserFormInput <UserFormInput
title="생년월일" title="생년월일"
name="birth" name="birth"
:type="'date'" :type="'date'"
:is-essential="true" :is-essential="true"
:is-alert="birthAlert" :is-alert="birthAlert"
@update:data="birth = $event" @update:data="birth = $event"
@update:alert="birthAlert = $event" @update:alert="birthAlert = $event"
:value="birth" :value="birth"
/> />
<FormSelect
<FormSelect title="비밀번호 힌트"
title="비밀번호 힌트" name="pwhint"
name="pwhint" :is-essential="true"
:is-essential="true" :is-row="false"
:is-row="false" :is-label="true"
:is-label="true" :is-common="true"
:is-common="true" :data="pwhintList"
:data="pwhintList" @update:data="pwhint = $event"
@update:data="pwhint = $event" />
/> <UserFormInput
title="답변"
<UserFormInput name="pwhintRes"
title="답변" :is-essential="true"
name="pwhintRes" :is-alert="pwhintResAlert"
:is-essential="true" @update:data="pwhintRes = $event"
:is-alert="pwhintResAlert" @update:alert="pwhintResAlert = $event"
@update:data="pwhintRes = $event" :value="pwhintRes"
@update:alert="pwhintResAlert = $event" />
:value="pwhintRes" <div class="d-flex mt-5">
/> <RouterLink type="button" class="btn btn-secondary me-2 w-50" to="/login">취소</RouterLink>
<button type="button" @click="handleSubmit" class="btn btn-primary w-50">확인</button>
<div class="d-flex mt-5"> </div>
<RouterLink type="button" class="btn btn-secondary me-2 w-50" to="/login">취소</RouterLink> </template>
<button type="button" @click="handleSubmit" class="btn btn-primary w-50">확인</button>
</div>
</div> </div>
<div v-if="resetForm" class="mt-4"> <div v-if="resetForm" class="mt-4">