File tree Expand file tree Collapse file tree 2 files changed +12
-13
lines changed
Expand file tree Collapse file tree 2 files changed +12
-13
lines changed Original file line number Diff line number Diff line change @@ -76,26 +76,26 @@ const submit = () => {
7676 id= " current_password"
7777 ref= " current-password-input"
7878 v- model= " formData.current_password"
79- type= " password"
80- class = " w-full"
8179 : invalid= " Boolean(validationErrors?.current_password)"
80+ type= " password"
8281 autocomplete= " current-password"
8382 required
83+ fluid
8484 / >
8585 < InputErrors : errors= " validationErrors?.current_password" / >
8686 < / div>
8787
8888 < div class = " flex flex-col gap-2" >
8989 < label for = " password" > New Password< / label>
90- < InputText
90+ < Password
9191 id= " password"
9292 ref= " new-password-input"
9393 v- model= " formData.password"
94- type= " password"
95- class = " w-full"
9694 : invalid= " Boolean(validationErrors?.password)"
9795 autocomplete= " new-password"
96+ toggleMask
9897 required
98+ fluid
9999 / >
100100 < InputErrors : errors= " validationErrors?.password" / >
101101 < / div>
@@ -105,11 +105,11 @@ const submit = () => {
105105 < InputText
106106 id= " password_confirmation"
107107 v- model= " formData.password_confirmation"
108- type= " password"
109- class = " w-full"
110108 : invalid= " Boolean(validationErrors?.password_confirmation)"
111- autocomplete= " new-password"
109+ type= " password"
110+ autocomplete= " confirm-password"
112111 required
112+ fluid
113113 / >
114114 < InputErrors : errors= " validationErrors?.password_confirmation" / >
115115 < / div>
Original file line number Diff line number Diff line change @@ -71,13 +71,12 @@ onMounted(() => {
7171 <label for =" name" >Name</label >
7272 <InputText
7373 id =" name"
74- ref =" name-input"
7574 v-model =" formData.name"
76- type =" text"
77- class =" w-full"
7875 :invalid =" Boolean(validationErrors?.name)"
76+ type =" text"
7977 autocomplete =" name"
8078 required
79+ fluid
8180 />
8281 <InputErrors :errors =" validationErrors?.name" />
8382 </div >
@@ -86,11 +85,11 @@ onMounted(() => {
8685 <InputText
8786 id =" email"
8887 v-model =" formData.email"
89- type =" email"
90- class =" w-full"
9188 :invalid =" Boolean(validationErrors?.email)"
89+ type =" email"
9290 autocomplete =" username"
9391 required
92+ fluid
9493 />
9594 <InputErrors :errors =" validationErrors?.email" />
9695 </div >
You can’t perform that action at this time.
0 commit comments