glowing-fiesta-original/app/pages/auth/login.vue
Liviu Burcusel 7e17984377
All checks were successful
Production Build and Deploy / Build (push) Successful in 1m25s
Production Build and Deploy / Deploy (push) Successful in 22s
[Closes #17] Fixed issues in deploy pipeline and modified some Forgejo templates
2026-01-13 11:23:22 +01:00

25 lines
910 B
Vue

<script setup lang="ts">
import { useRuntimeConfig, useSeoMeta } from "#app";
import { useBreadcrumbStore } from "~/stores/breadcrumbs";
import LoginForm from "~/components/LoginForm.vue";
const config = useRuntimeConfig();
const breadcrumbStore = useBreadcrumbStore();
breadcrumbStore.setBreadcrumbs([{ label: "Auth" }, { label: "Login", to: "/auth/login" }]);
useSeoMeta({
title: "Glowing Fiesta - Login",
ogTitle: "Glowing Fiesta - Login",
description: "This is the login page of a very nice all-purpose application",
ogDescription: "This is the login page of a very nice all-purpose application",
ogImage: config.public.siteUrl + "/images/human.png",
});
</script>
<template>
<div class="bg-muted/50 min-h-screen flex-1 rounded-xl md:min-h-min flex items-center justify-center gap-2">
<div class="flex w-full max-w-sm flex-col gap-6">
<LoginForm />
</div>
</div>
</template>