mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
This also allows us to generate a password reset link to quickly reset your password without entering the code and email manually.
19 lines
317 B
Vue
19 lines
317 B
Vue
<template>
|
|
<request @handleSubmitted="handlePasswordResetRequested" />
|
|
</template>
|
|
|
|
<script>
|
|
import Request from '~/components/PasswordReset/Request'
|
|
|
|
export default {
|
|
components: {
|
|
Request,
|
|
},
|
|
methods: {
|
|
handlePasswordResetRequested() {
|
|
this.$router.push('verify-code')
|
|
},
|
|
},
|
|
}
|
|
</script>
|