Color Changes

Login Changes
Misc
This commit is contained in:
2023-12-10 15:06:16 +01:00
parent 5182959881
commit 6ffc4f01d9
10 changed files with 201 additions and 8 deletions

View File

@@ -22,6 +22,10 @@ const timeInfo = ref({
const runningTimeInfo = ref({
})
const showAddTimeModal = ref(false)
const addTimeInfo = ref({
})
@@ -103,7 +107,67 @@ const selectStartedTime = () => {
>
Zeit Wählen
</UButton>
<UButton
class="controlButton"
@click="showAddTimeModal = true"
>
Erstellen
</UButton>
<UModal
v-model="showAddTimeModal"
>
<UCard>
<template #header>
Zeiteintrag erstellen
</template>
<UFormGroup
label="Start:"
>
</UFormGroup>
<UFormGroup
label="Ende:"
>
</UFormGroup>
<UFormGroup
label="Dauer:"
>
<UInput
/>
</UFormGroup>
<UFormGroup
label="Benutzer:"
>
<USelectMenu/>
</UFormGroup>
<UFormGroup
label="Projekt:"
>
<USelectMenu/>
</UFormGroup>
<UFormGroup
label="Typ:"
>
<USelectMenu/>
</UFormGroup>
<UFormGroup
label="Notizen:"
>
<UTextarea/>
</UFormGroup>
<template #footer>
<UButton>
Erstellen
</UButton>
</template>
</UCard>
</UModal>
<div>