I have added a new window to create a new user.

This commit is contained in:
PascalMarchesseault
2024-08-05 22:25:54 -04:00
parent f9d8e724fc
commit b83db5b33b
6 changed files with 157 additions and 18 deletions

View File

@@ -142,9 +142,6 @@
</div>
</div>
<v-dialog v-model="showModal" max-width="600">
<v-card>
<v-card-title class="text-center" style="margin-top: 30px; margin-bottom: 40px;">
@@ -159,21 +156,15 @@
<v-card-actions class="justify-end" style="margin-right: 20px;">
<v-btn to="/" size="large" class="text-center" color="primary" text @click="showModal = false">Fermer</v-btn>
</v-card-actions>
</v-card>
</v-dialog>
</template>
<script setup>
import { useClient } from "@/plugins/api.js";
import { ref } from 'vue';
const client = useClient();
const showModal = ref(false);
const name = ref("");
const emailAddress = ref("");