27 lines
827 B
Vue
27 lines
827 B
Vue
<script setup></script>
|
|
|
|
<template>
|
|
<div class="h-screen w-full bg-zinc-900 text-gray-100 flex gap-4">
|
|
<main
|
|
class="flex flex-col flex-1 px-4 overflow-hidden items-center justify-center"
|
|
>
|
|
<a
|
|
:href="route('login')"
|
|
method="get"
|
|
as="button"
|
|
type="button"
|
|
id="logotext"
|
|
class="text-5xl flex"
|
|
>
|
|
<span>DR</span>
|
|
<span class="text-3xl" id="lightning">⭍</span>
|
|
<span>VE</span>
|
|
</a>
|
|
<div
|
|
class="w-full sm:max-w-md mt-6 px-6 py-4 border-sky-600 border rounded overflow-hidden sm:rounded-lg"
|
|
>
|
|
<slot />
|
|
</div>
|
|
</main>
|
|
</div>
|
|
</template>
|