From 23431e4d8143e431ae660b2e33128412510275a9 Mon Sep 17 00:00:00 2001 From: Yash Maheshwari Date: Thu, 26 Oct 2023 15:41:34 +0530 Subject: [PATCH] Improved: UI for reset password page(#63) --- src/views/ResetPassword.vue | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/src/views/ResetPassword.vue b/src/views/ResetPassword.vue index b0d9045..c2f1574 100644 --- a/src/views/ResetPassword.vue +++ b/src/views/ResetPassword.vue @@ -6,7 +6,7 @@
- {{ $t("New Password") }} + {{ $t("New Password") }} Invalid email @@ -14,7 +14,7 @@ - {{ $t("Confirm Password") }} + {{ $t("Confirm Password") }} @@ -24,7 +24,6 @@
{{ $t("Reset Password") }} -
@@ -56,13 +55,13 @@ import { defineComponent } from "vue"; import { useRouter } from "vue-router"; import { useAuthStore } from "@/store/auth"; import Logo from '@/components/Logo.vue'; -import { arrowForwardOutline, closeCircleOutline, eyeOutline, eyeOffOutline, gridOutline } from 'ionicons/icons' +import { closeCircleOutline, eyeOutline, eyeOffOutline, gridOutline } from 'ionicons/icons' import { translate } from "@/i18n"; import { UserService } from '@/services/UserService' import { hasError } from "@/adapter"; export default defineComponent({ - name: "Login", + name: "ResetPassword", components: { IonButton, IonContent, @@ -137,7 +136,6 @@ export default defineComponent({ const router = useRouter(); const authStore = useAuthStore(); return { - arrowForwardOutline, authStore, closeCircleOutline, eyeOutline,