Password Recovery Layout
Password Recovery Request
Forgot your password?
That's okay, it happens! To recover your password, please enter the email address of your account below and we'll send you further instructions there.
<template>
<Password-Recovery-Layout :recover-password="recoverPassword" />
</template>
<script>
export default {
methods: {
recoverPassword(email) {
// call password recovery service ...
},
},
}
</script>
Password Reset
Set your new password
You made it! As a last step, insert the new password for your account in the fields below.
<template>
<Password-Reset-Layout :reset-password="resetPassword" />
</template>
<script>
export default {
methods: {
resetPassword(newPassword) {
// call password reset service ...
},
},
}
</script>
