feat(frontend): Add DeleteModal

This commit is contained in:
2025-03-16 08:11:09 +01:00
parent 66dabc329d
commit 6f86208f92
7 changed files with 114 additions and 34 deletions

View File

@@ -4,22 +4,22 @@
<form @submit.prevent="handleRegister">
<div class="form-group">
<label for="username">Benutzername:</label>
<input type="text" id="username" v-model="username" required />
<input id="username" v-model="username" type="text" required />
</div>
<div class="form-group">
<label for="email">Email:</label>
<input type="email" id="email" v-model="email" required />
<input id="email" v-model="email" type="email" required />
</div>
<div class="form-group">
<label for="password">Passwort:</label>
<input type="password" id="password" v-model="password" required />
<input id="password" v-model="password" type="password" required />
</div>
<div class="form-group">
<label for="confirmPassword">Passwort bestätigen:</label>
<input type="password" id="confirmPassword" v-model="confirmPassword" required />
<input id="confirmPassword" v-model="confirmPassword" type="password" required />
</div>
<button type="submit">Registrieren</button>
@@ -27,7 +27,7 @@
</div>
</template>
<script setup>
<script setup lang="ts">
import { ref } from 'vue'
const username = ref('')