mealie/frontend/pages/forgot-password.vue
Arsène Reymond 084f99b0de
Some checks are pending
CodeQL / Analyze (push) Waiting to run
Docker Nightly Production / Backend Server Tests (push) Waiting to run
Docker Nightly Production / Frontend Tests (push) Waiting to run
Docker Nightly Production / Build Package (push) Waiting to run
Docker Nightly Production / Build Tagged Release (push) Blocked by required conditions
Docker Nightly Production / Notify Discord (push) Blocked by required conditions
Release Drafter / ✏️ Draft release (push) Waiting to run
fix: Nuxt3 upgrades UI fixes & improvements (#5589)
2025-06-28 15:59:58 +02:00

117 lines
2.6 KiB
Vue

<template>
<v-container
fill-height
fluid
class="d-flex justify-center align-center"
>
<v-card
color="background d-flex flex-column align-center"
flat
width="600px"
>
<v-card-title class="headline justify-center">
{{ $t('user.forgot-password') }}
</v-card-title>
<BaseDivider />
<v-card-text>
<v-form @submit.prevent="requestLink()">
<v-text-field
v-model="email"
:prepend-inner-icon="$globals.icons.email"
variant="solo-filled"
flat
autofocus
name="login"
:label="$t('user.email')"
type="text"
/>
<p class="text-center">
{{ $t('user.forgot-password-text') }}
</p>
<v-card-actions class="justify-center">
<div class="max-button">
<v-btn
:loading="loading"
color="primary"
type="submit"
size="large"
rounded
class="rounded-xl"
block
>
<v-icon start>
{{ $globals.icons.email }}
</v-icon>
{{ $t("user.reset-password") }}
</v-btn>
</div>
</v-card-actions>
</v-form>
</v-card-text>
<v-btn
class="mx-auto"
variant="text"
nuxt
to="/login"
>
{{ $t("user.login") }}
</v-btn>
</v-card>
</v-container>
</template>
<script lang="ts">
import { useUserApi } from "~/composables/api";
import { alert } from "~/composables/use-toast";
export default defineNuxtComponent({
setup() {
definePageMeta({
layout: "basic",
});
const state = reactive({
email: "",
loading: false,
error: false,
});
const i18n = useI18n();
// Set page title
useSeoMeta({
title: i18n.t("user.login"),
});
const api = useUserApi();
async function requestLink() {
state.loading = true;
// TODO: Fix Response to send meaningful error
const { response } = await api.email.sendForgotPassword({ email: state.email });
if (response?.status === 200) {
state.loading = false;
state.error = false;
alert.success(i18n.t("profile.email-sent"));
}
else {
state.loading = false;
state.error = true;
alert.error(i18n.t("profile.error-sending-email"));
}
}
return {
requestLink,
...toRefs(state),
};
},
});
</script>
<style lang="css">
.max-button {
width: 300px;
}
</style>