targo-frontend/src/pages/login-page.vue
Nicolas Drolet 33061ef2ab BREAKING(timesheet): Overhaul timesheet UI, refactor to increase efficiency, complete OIDC login
Change timesheet UI to better fit current app model and avoid adding extra clicks and interactions to add new shifts and expenses. Also refactoring calls to backend to be more efficient and use recently-finalized OIDC implementation and integration.
2025-10-22 08:59:40 -04:00

16 lines
653 B
Vue

<script setup lang="ts">
import LoginConnectionPanel from 'src/modules/auth/components/login-connection-panel.vue';
</script>
<template>
<q-layout view="hHh lpR fFf">
<q-page-container class="bg-dark">
<q-img src="src/assets/village.png" fit="cover" position="50% 100%" class="absolute-full" />
<q-page class="flex flex-center">
<transition appear slow enter-active-class="animated zoomIn" leave-active-class="animated zoomOut">
<LoginConnectionPanel />
</transition>
</q-page>
</q-page-container>
</q-layout>
</template>