fix(ui): working link in password reset
This commit is contained in:
parent
469405767f
commit
b4cf8ff897
|
@ -9,6 +9,7 @@ import Input from '~/components/ui/Input.vue'
|
|||
import Button from '~/components/ui/Button.vue'
|
||||
import Spacer from '~/components/ui/layout/Spacer.vue'
|
||||
import Layout from '~/components/ui/Layout.vue'
|
||||
import Link from '~/components/ui/Link.vue'
|
||||
|
||||
import axios from 'axios'
|
||||
|
||||
|
@ -100,13 +101,14 @@ onMounted(() => emailInput.value.focus())
|
|||
>
|
||||
{{ t('views.auth.PasswordReset.button.requestReset') }}
|
||||
</Button>
|
||||
<Button
|
||||
<Link
|
||||
:to="{path: '/login'}"
|
||||
ghost
|
||||
auto
|
||||
solid
|
||||
secondary
|
||||
buttonWidth
|
||||
>
|
||||
{{ t('views.auth.PasswordReset.link.back') }}
|
||||
</Button>
|
||||
</Link>
|
||||
</Layout>
|
||||
</Layout>
|
||||
</main>
|
||||
|
|
Loading…
Reference in New Issue