-
+
@@ -14,6 +16,11 @@ defineProps({
diff --git a/src/i18n/lang/en.json b/src/i18n/lang/en.json
index 09714acd..56a4bd11 100644
--- a/src/i18n/lang/en.json
+++ b/src/i18n/lang/en.json
@@ -36,6 +36,7 @@
"password": "Password",
"passwordRepeat": "Retype your password",
"passwordPlaceholder": "e.g. •••••••••••",
+ "forgotPassword": "Forgot your password?",
"resetPassword": "Reset your password",
"resetPasswordAction": "Send me a password reset link",
"resetPasswordSuccess": "Check your inbox! You should have an e-mail with instructions on how to reset your password.",
@@ -473,7 +474,8 @@
"download": "Download",
"showMenu": "Show the menu",
"hideMenu": "Hide the menu",
- "forExample": "For example:"
+ "forExample": "For example:",
+ "welcomeBack": "Welcome Back!"
},
"input": {
"resetColor": "Reset Color",
@@ -811,7 +813,7 @@
"url": "Vikunja URL",
"urlPlaceholder": "eg. https://localhost:3456",
"change": "change",
- "signInOn": "Sign in to your Vikunja account on {0}",
+ "use": "Using Vikunja installation at {0}",
"error": "Could not find or use Vikunja installation at \"{domain}\". Please try a different url.",
"success": "Using Vikunja installation at \"{domain}\".",
"urlRequired": "A url is required."
diff --git a/src/router/index.js b/src/router/index.js
index 1f876f88..cb049928 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -105,21 +105,33 @@ const router = createRouter({
path: '/login',
name: 'user.login',
component: LoginComponent,
+ meta: {
+ title: 'user.auth.login',
+ },
},
{
path: '/get-password-reset',
name: 'user.password-reset.request',
component: GetPasswordResetComponent,
+ meta: {
+ title: 'user.auth.resetPassword',
+ },
},
{
path: '/password-reset',
name: 'user.password-reset.reset',
component: PasswordResetComponent,
+ meta: {
+ title: 'user.auth.resetPassword',
+ },
},
{
path: '/register',
name: 'user.register',
component: RegisterComponent,
+ meta: {
+ title: 'user.auth.register',
+ },
},
{
path: '/user/settings',
diff --git a/src/views/user/Login.vue b/src/views/user/Login.vue
index f3562d70..10ed12d7 100644
--- a/src/views/user/Login.vue
+++ b/src/views/user/Login.vue
@@ -1,103 +1,97 @@
-
Login
-
-
- {{ $t('user.auth.confirmEmailSuccess') }}
-
-
-