54 lines
2.3 KiB
Vue
54 lines
2.3 KiB
Vue
<script setup>
|
||
import { Head, Link } from '@inertiajs/vue3';
|
||
|
||
</script>
|
||
|
||
<template>
|
||
<Head title="Подтверждение аккаунта"/>
|
||
<div class="bg-gray-50 text-black/50 dark:bg-black dark:text-white/50">
|
||
<div
|
||
class="relative flex min-h-screen flex-col items-center justify-center selection:bg-[#FF2D20] selection:text-white"
|
||
>
|
||
<div class="relative flex-1 w-full max-w-2xl px-6 lg:max-w-7xl flex flex-col justify-start">
|
||
<header
|
||
class="flex justify-end py-4"
|
||
>
|
||
<nav class="-mx-3 flex flex-1 justify-end">
|
||
<Link
|
||
v-if="$page.props.auth.user"
|
||
:href="route('logout')"
|
||
method="post"
|
||
as="button"
|
||
class="rounded-md px-3 py-2 text-black ring-1 ring-transparent transition hover:text-black/70 focus:outline-none focus-visible:ring-[#FF2D20] dark:text-white dark:hover:text-white/80 dark:focus-visible:ring-white"
|
||
>
|
||
Выход
|
||
</Link>
|
||
</nav>
|
||
</header>
|
||
|
||
<main class="mt-6 flex-1 flex flex-col justify-center">
|
||
<div class="-mt-40 flex flex-col items-center">
|
||
<span class="font-bold text-6xl leading-tight">
|
||
Ваш аккаунт не подтверждён.
|
||
</span>
|
||
<span class="mt-20 font-bold text-2xl leading-tight">
|
||
Дальнейший доступ заблокирован до подтверждения аккаунта.
|
||
</span>
|
||
<span class="font-bold text-2xl leading-tight">
|
||
Для подтверждения аккаунта обратитесь к NaggaDIM!
|
||
</span>
|
||
</div>
|
||
</main>
|
||
|
||
<footer class="py-4 text-center text-sm text-black dark:text-white/70">
|
||
Developed by NaggaDIM (Copyright ©️ 2024 - {{ $page.props.currentYear ?? 2024 }})
|
||
</footer>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</template>
|
||
|
||
<style scoped>
|
||
|
||
</style>
|