Use daisyUI input-bordered primitives on login fields

This commit is contained in:
Ruslan Bakiev
2026-04-02 15:48:29 +07:00
parent c918fa3443
commit b01b01a360

View File

@@ -239,7 +239,7 @@ onBeforeUnmount(() => {
<input <input
v-model="email" v-model="email"
type="email" type="email"
class="input w-full" class="input input-bordered w-full"
placeholder="name@company.com" placeholder="name@company.com"
@keydown.enter.prevent="requestCode" @keydown.enter.prevent="requestCode"
@blur="onEmailBlur" @blur="onEmailBlur"
@@ -281,7 +281,7 @@ onBeforeUnmount(() => {
v-model="code" v-model="code"
type="text" type="text"
maxlength="6" maxlength="6"
class="input w-full" class="input input-bordered w-full"
placeholder="123456" placeholder="123456"
@keydown.enter.prevent="verifyCode" @keydown.enter.prevent="verifyCode"
> >