glowing-fiesta-original/app/pages/auth/create-account.vue
Liviu Burcusel c184a79f5e
All checks were successful
Production PR / QA Tests (pull_request) Successful in 43s
Fixed deploy issue and modified some Forgejo templates
2026-01-13 11:15:05 +01:00

25 lines
967 B
Vue

<script setup lang="ts">
import { useRuntimeConfig, useSeoMeta } from "#app";
import { useBreadcrumbStore } from "~/stores/breadcrumbs";
import SignupForm from "@/components/SignupForm.vue";
const breadcrumbStore = useBreadcrumbStore();
breadcrumbStore.setBreadcrumbs([{ label: "Auth" }, { label: "Create Account", to: "/auth/create-account" }]);
const config = useRuntimeConfig();
useSeoMeta({
title: "Glowing Fiesta - Create Account",
ogTitle: "Glowing Fiesta - Create Account",
description: "This is the create account page of a very nice all-purpose application",
ogDescription: "This is the create account 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">
<SignupForm />
</div>
</div>
</template>