Files
authmatch/src/views/WizardView.vue
2024-04-10 23:20:48 -06:00

21 lines
637 B
Vue

<script setup lang="ts">
import EnterDetailsModal from "@/components/enter-details-modal.vue";
import WizardQuestions from "@/components/wizard-questions.vue";
</script>
<template>
<div class="h-full w-full flex flex-col justify-center items-center">
<!-- <div class="h-full w-full flex flex-col justify-center items-center">-->
<enter-details-modal class="absolute" />
<!-- <iframe src="https://mw.sa.vin/index.php/lists/zq107l51gw5fc/subscribe?output=embed&width=400&height=400" width="400" height="400" frameborder="0" scrolling="yes"></iframe>-->
<wizard-questions />
</div>
</template>
<style scoped>
</style>