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 Button from '~/components/ui/Button.vue'
|
||||||
import Spacer from '~/components/ui/layout/Spacer.vue'
|
import Spacer from '~/components/ui/layout/Spacer.vue'
|
||||||
import Layout from '~/components/ui/Layout.vue'
|
import Layout from '~/components/ui/Layout.vue'
|
||||||
|
import Link from '~/components/ui/Link.vue'
|
||||||
|
|
||||||
import axios from 'axios'
|
import axios from 'axios'
|
||||||
|
|
||||||
|
@ -100,13 +101,14 @@ onMounted(() => emailInput.value.focus())
|
||||||
>
|
>
|
||||||
{{ t('views.auth.PasswordReset.button.requestReset') }}
|
{{ t('views.auth.PasswordReset.button.requestReset') }}
|
||||||
</Button>
|
</Button>
|
||||||
<Button
|
<Link
|
||||||
:to="{path: '/login'}"
|
:to="{path: '/login'}"
|
||||||
ghost
|
solid
|
||||||
auto
|
secondary
|
||||||
|
buttonWidth
|
||||||
>
|
>
|
||||||
{{ t('views.auth.PasswordReset.link.back') }}
|
{{ t('views.auth.PasswordReset.link.back') }}
|
||||||
</Button>
|
</Link>
|
||||||
</Layout>
|
</Layout>
|
||||||
</Layout>
|
</Layout>
|
||||||
</main>
|
</main>
|
||||||
|
|
Loading…
Reference in New Issue