62 lines
2.0 KiB
Vue
62 lines
2.0 KiB
Vue
<script setup>
|
|
import { computed } from 'vue';
|
|
import GuestLayout from '@/Layouts/GuestLayout.vue';
|
|
import PrimaryButton from '@/Components/PrimaryButton.vue';
|
|
import { Head, Link, useForm } from '@inertiajs/vue3';
|
|
|
|
const props = defineProps({
|
|
status: {
|
|
type: String,
|
|
},
|
|
});
|
|
|
|
const form = useForm({});
|
|
|
|
const submit = () => {
|
|
form.post(route('verification.send'));
|
|
};
|
|
|
|
const verificationLinkSent = computed(
|
|
() => props.status === 'verification-link-sent',
|
|
);
|
|
</script>
|
|
|
|
<template>
|
|
<GuestLayout>
|
|
<Head title="Vérification de l'email" />
|
|
|
|
<div class="mb-4 text-sm text-gray-600 dark:text-gray-400">
|
|
Merci de vous être inscrit ! Avant de commencer, pourriez-vous vérifier votre
|
|
adresse email en cliquant sur le lien que nous venons de vous envoyer ? Si vous
|
|
n'avez pas reçu l'email, nous vous en enverrons un autre avec plaisir.
|
|
</div>
|
|
|
|
<div
|
|
class="mb-4 text-sm font-medium text-green-600 dark:text-green-400"
|
|
v-if="verificationLinkSent"
|
|
>
|
|
Un nouveau lien de vérification a été envoyé à l'adresse email que vous
|
|
avez fournie lors de l'inscription.
|
|
</div>
|
|
|
|
<form @submit.prevent="submit">
|
|
<div class="mt-4 flex items-center justify-between">
|
|
<PrimaryButton
|
|
:class="{ 'opacity-25': form.processing }"
|
|
:disabled="form.processing"
|
|
>
|
|
Renvoyer l'email de vérification
|
|
</PrimaryButton>
|
|
|
|
<Link
|
|
:href="route('logout')"
|
|
method="post"
|
|
as="button"
|
|
class="rounded-md text-sm text-gray-600 underline hover:text-gray-900 focus:outline-none focus:ring-2 focus:ring-indigo-500 focus:ring-offset-2 dark:text-gray-400 dark:hover:text-gray-100 dark:focus:ring-offset-gray-800"
|
|
>Se déconnecter</Link
|
|
>
|
|
</div>
|
|
</form>
|
|
</GuestLayout>
|
|
</template>
|