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.
16 lines
653 B
Vue
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> |