diff --git a/client/src/pages/hello.vue b/client/src/pages/hello.vue index 28231b64..fd6becfc 100644 --- a/client/src/pages/hello.vue +++ b/client/src/pages/hello.vue @@ -3,7 +3,14 @@ class="hello" data-cy="hello-page">
-
+
+ sdf + + +

mySkillbox ist ein Angebot des hep Verlags in Zusammenarbeit mit dem Eidgenössischen Hochschulinstitut für Berufsbildung.

@@ -129,6 +136,12 @@ //} } + .logos { + &__logo { + height: 30px; + } + } + .login-actions { @include widget-shadow; diff --git a/client/src/pages/login-error.vue b/client/src/pages/login-error.vue new file mode 100644 index 00000000..b0a90307 --- /dev/null +++ b/client/src/pages/login-error.vue @@ -0,0 +1,41 @@ + + + + + diff --git a/client/src/pages/verify-email.vue b/client/src/pages/verify-email.vue deleted file mode 100644 index 7d4e26b2..00000000 --- a/client/src/pages/verify-email.vue +++ /dev/null @@ -1,20 +0,0 @@ - - - diff --git a/client/src/router/index.js b/client/src/router/index.js index cb8a3886..aba7d06c 100644 --- a/client/src/router/index.js +++ b/client/src/router/index.js @@ -9,7 +9,7 @@ import submission from '@/pages/studentSubmission'; import Router from 'vue-router'; import surveyPage from '@/pages/survey'; import styleGuidePage from '@/pages/styleguide'; -import verifyEmail from '@/pages/verify-email'; +import loginError from '@/pages/login-error'; import licenseActivation from '@/pages/license-activation'; import joinClass from '@/pages/joinClass'; import news from '@/pages/news'; @@ -58,8 +58,12 @@ const routes = [ }, { path: '/verify-email', - component: verifyEmail, + component: loginError, name: 'verifyEmail', + props: { + title: 'Bitte schauen Sie in Ihr Postfach', + errorMessage: 'Ihre E-Mail Adresse ist noch nicht verifiziert. Wir haben eine E-Mail mit einem Aktivierungslink an Sie verschickt.' + }, meta: { public: true, layout: 'public',