You've already forked isop-mirror
104 lines
2.4 KiB
Vue
104 lines
2.4 KiB
Vue
<script setup lang="ts">
|
|
const client = useSanctumClient();
|
|
|
|
definePageMeta({
|
|
middleware: ['sanctum:guest'],
|
|
});
|
|
|
|
useSeoMeta({
|
|
title: "Reset hesla | ISOP",
|
|
ogTitle: "Reset hesla",
|
|
description: "Reset hesla ISOP",
|
|
ogDescription: "Reset hesla",
|
|
});
|
|
|
|
const rules = {
|
|
required: (v: string) => (!!v && v.trim().length > 0) || 'Povinné pole',
|
|
email: (v: string) => /.+@.+\..+/.test(v) || 'Zadajte platný email',
|
|
};
|
|
|
|
const isValid = ref(false);
|
|
const email = ref('');
|
|
|
|
const loading = ref(false);
|
|
const error = ref(null as null | string);
|
|
|
|
async function handleReset() {
|
|
error.value = null;
|
|
loading.value = true;
|
|
|
|
try {
|
|
await client("/api/password-reset", {
|
|
method: 'POST',
|
|
body: {
|
|
email: email.value
|
|
}
|
|
});
|
|
|
|
navigateTo("/reset_psw/request_sent");
|
|
} catch (e: any) {
|
|
error.value = e.data?.message as string;
|
|
} finally {
|
|
loading.value = false;
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<v-container fluid class="page-container form-wrap">
|
|
<v-card id="page-container-card">
|
|
<h2 class="page-title">Reset hesla</h2>
|
|
|
|
<!-- Chybová hláška -->
|
|
<v-alert v-if="error !== null" density="compact" :text="error" title="Chyba" type="error"
|
|
id="login-error-alert" class="alert mx-auto"></v-alert>
|
|
|
|
<!-- Čakajúca hláška -->
|
|
<v-alert v-if="loading" density="compact" text="Prosím čakajte..." title="Spracovávam" type="info"
|
|
id="login-error-alert" class="alert mx-auto"></v-alert>
|
|
|
|
<v-form v-else v-model="isValid" @submit.prevent="handleReset">
|
|
<v-text-field v-model="email" :rules="[rules.required, rules.email]" label="Email:" variant="outlined"
|
|
density="comfortable" />
|
|
|
|
<v-btn type="submit" color="success" size="large" block :disabled="!isValid">
|
|
Odoslať Email
|
|
</v-btn>
|
|
</v-form>
|
|
</v-card>
|
|
</v-container>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.alert {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.page-container {
|
|
max-width: 1120px;
|
|
margin: 0 auto;
|
|
padding-left: 24px;
|
|
padding-right: 24px;
|
|
}
|
|
|
|
#page-container-card {
|
|
padding: 10px;
|
|
}
|
|
|
|
.form-wrap {
|
|
max-width: 560px;
|
|
}
|
|
|
|
.page-title {
|
|
font-size: 24px;
|
|
line-height: 1.2;
|
|
font-weight: 700;
|
|
margin: 24px 0 16px;
|
|
color: #1f1f1f;
|
|
}
|
|
|
|
.mb-3 {
|
|
margin-bottom: 12px;
|
|
}
|
|
</style>
|