diff --git a/frontend/src/components/Auth/AuthMobileStart.vue b/frontend/src/components/Auth/AuthMobileStart.vue index b6bfcbc2d..7b11df0f3 100644 --- a/frontend/src/components/Auth/AuthMobileStart.vue +++ b/frontend/src/components/Auth/AuthMobileStart.vue @@ -9,36 +9,36 @@ {{ $t('auth.left.newCurrency') }}
- + {{ $t('signup') }}
@@ -46,7 +46,7 @@ {{ $t('auth.left.hereLogin') }} @@ -58,6 +58,9 @@ diff --git a/frontend/src/components/Auth/AuthNavbar.vue b/frontend/src/components/Auth/AuthNavbar.vue index ffef864fe..7b3eed0e3 100644 --- a/frontend/src/components/Auth/AuthNavbar.vue +++ b/frontend/src/components/Auth/AuthNavbar.vue @@ -10,7 +10,7 @@ /> @@ -37,8 +37,8 @@ export default { name: 'AuthNavbar', data() { return { - logo: 'img/brand/green.png', - sheet: 'img/template/Blaetter.png', + logo: '/img/brand/green.png', + sheet: '/img/template/Blaetter.png', } }, } diff --git a/frontend/src/layouts/AuthLayout.vue b/frontend/src/layouts/AuthLayout.vue index f88c21c53..34c681536 100644 --- a/frontend/src/layouts/AuthLayout.vue +++ b/frontend/src/layouts/AuthLayout.vue @@ -3,7 +3,7 @@
@@ -34,7 +34,7 @@
{{ $t('1000thanks') }}
- + @@ -44,7 +44,7 @@
- +
- + @@ -73,7 +73,7 @@ - +
diff --git a/frontend/src/pages/ResetPassword.spec.js b/frontend/src/pages/ResetPassword.spec.js index ac944e29a..aee6f50b1 100644 --- a/frontend/src/pages/ResetPassword.spec.js +++ b/frontend/src/pages/ResetPassword.spec.js @@ -79,16 +79,6 @@ describe('ResetPassword', () => { expect(wrapper.find('div.resetpwd-form').exists()).toBeTruthy() }) - describe('links', () => { - it('has a link "Back"', async () => { - expect(wrapper.findAllComponents(RouterLinkStub).at(0).text()).toEqual('back') - }) - - it('links to /login when clicking "Back"', async () => { - expect(wrapper.findAllComponents(RouterLinkStub).at(0).props().to).toBe('/login') - }) - }) - describe('reset password form', () => { it('has a register form', async () => { expect(wrapper.find('form').exists()).toBeTruthy() diff --git a/frontend/src/pages/ResetPassword.vue b/frontend/src/pages/ResetPassword.vue index a8b21da65..88cfeede2 100644 --- a/frontend/src/pages/ResetPassword.vue +++ b/frontend/src/pages/ResetPassword.vue @@ -5,19 +5,13 @@
- + {{ $t(displaySetup.button) }}
- - - - {{ $t('back') }} - -
@@ -39,10 +33,6 @@ const textFields = { button: 'settings.password.set', linkTo: '/login', }, - login: { - headline: 'site.thx.errorTitle', - subtitle: 'site.thx.activateEmail', - }, } export default { @@ -116,6 +106,7 @@ export default { }, }, created() { + this.$emit('set-mobile-start', false) this.setDisplaySetup() }, }