2023-07-26 05:19:52 +02:00
|
|
|
<script setup lang="ts">
|
2023-07-27 17:54:29 +02:00
|
|
|
import { useForm } from 'vee-validate'
|
|
|
|
import { toTypedSchema } from '@vee-validate/yup'
|
2023-07-26 05:19:52 +02:00
|
|
|
import * as yup from 'yup'
|
|
|
|
|
2023-07-27 17:54:29 +02:00
|
|
|
const { handleSubmit } = useForm({
|
|
|
|
validationSchema: toTypedSchema(
|
|
|
|
yup.object({
|
|
|
|
currentPassword: yup.string(),
|
|
|
|
newPassword: yup.string().required().min(8),
|
|
|
|
confirmNewPassword: yup
|
|
|
|
.string()
|
|
|
|
.oneOf([yup.ref('newPassword')])
|
|
|
|
.required(),
|
|
|
|
}),
|
|
|
|
),
|
|
|
|
})
|
2023-07-26 05:19:52 +02:00
|
|
|
|
2023-07-27 17:54:29 +02:00
|
|
|
const onSubmit = handleSubmit((form) => {
|
2023-07-26 05:19:52 +02:00
|
|
|
console.log('SUBMIT user password edit', form)
|
2023-07-27 17:54:29 +02:00
|
|
|
})
|
2023-07-26 05:19:52 +02:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2023-07-27 17:54:29 +02:00
|
|
|
<form novalidate @submit="onSubmit">
|
2023-07-26 05:19:52 +02:00
|
|
|
<!-- FIXME replace with accessible component -->
|
|
|
|
<div role="alert" class="alert alert-warning mb-10">
|
|
|
|
<Icon name="mdi:warning-outline" size="2em" />
|
|
|
|
{{ $t('good_practices_about_user_password') }}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="md:flex">
|
|
|
|
<div class="basis-1/2 mb-10 md:mr-10">
|
|
|
|
<FormField name="currentPassword" :label="$t('current_password')">
|
2023-07-27 17:54:29 +02:00
|
|
|
<TextInput
|
|
|
|
name="currentPassword"
|
|
|
|
type="text"
|
|
|
|
autocomplete="currrent-password"
|
|
|
|
class="w-full"
|
|
|
|
/>
|
2023-07-26 05:19:52 +02:00
|
|
|
</FormField>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="basis-1/2 md:ml-10">
|
|
|
|
<FormField name="newPassword" :label="$t('new_password')" class="mb-3">
|
2023-07-27 17:54:29 +02:00
|
|
|
<TextInput
|
|
|
|
name="newPassword"
|
|
|
|
type="text"
|
|
|
|
autocomplete="new-password"
|
|
|
|
class="w-full"
|
|
|
|
/>
|
2023-07-26 05:19:52 +02:00
|
|
|
</FormField>
|
|
|
|
|
|
|
|
<FormField
|
|
|
|
name="confirmNewPassword"
|
|
|
|
:label="$t('confirm_new_password')"
|
|
|
|
>
|
2023-07-27 17:54:29 +02:00
|
|
|
<TextInput
|
|
|
|
name="confirmNewPassword"
|
|
|
|
type="text"
|
|
|
|
autocomplete="new-password"
|
|
|
|
class="w-full"
|
|
|
|
/>
|
2023-07-26 05:19:52 +02:00
|
|
|
</FormField>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="flex mt-10">
|
|
|
|
<NuxtLink to="/" class="btn ml-auto mr-2">
|
|
|
|
{{ $t('cancel') }}
|
|
|
|
</NuxtLink>
|
|
|
|
<YButton :text="$t('ok')" type="submit" variant="success" />
|
|
|
|
</div>
|
2023-07-27 17:54:29 +02:00
|
|
|
</form>
|
2023-07-26 05:19:52 +02:00
|
|
|
</template>
|