initial commit

This commit is contained in:
2026-02-26 21:29:34 +01:00
commit d9d84634e8
72 changed files with 18491 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
<template>
<UiModale :modalActive="modelValue"
@close="emit('update:modelValue', false)"
title="Confirmer le changement demail">
<div class="modale-content">
<p>
Un email de validation va être envoyé à la nouvelle adresse.
Le changement ne sera effectif quaprès confirmation.
</p>
<div class="actions">
<button class="btn danger" @click="confirm">Confirmer</button>
<button class="btn" @click="emit('update:modelValue', false)">Annuler</button>
</div>
</div>
</UiModale>
</template>
<script setup lang="ts">
const props = defineProps<{
modelValue: boolean
}>()
const emit = defineEmits(['update:modelValue', 'confirm'])
function confirm() {
emit('confirm')
emit('update:modelValue', false)
}
</script>