added auth support

This commit is contained in:
Edward Tirado Jr 2026-02-24 00:20:54 -06:00
parent 869be69d67
commit f3dbaef776
7 changed files with 112 additions and 3 deletions

13
app/pages/auth/login.vue Normal file
View file

@ -0,0 +1,13 @@
<script lang="ts" setup>
import LoginForm from "~/components/forms/auth/login-form.vue";
</script>
<template>
<login-form/>
</template>
<style scoped>
</style>