feat: review backend and frontend

- update to the latest version of Java/SpringBoot
- update to the latest version NuxtJS
- add account/password update
- add account creation
- add account password reset
- add bundle to regroup questions and add default questions on user creation
- add bundle creation
This commit is contained in:
2024-07-03 15:55:34 +02:00
parent f86d794239
commit 3ed425fc57
205 changed files with 5290 additions and 40453 deletions

20
frontend/pages/cgu.vue Normal file
View File

@@ -0,0 +1,20 @@
<script lang="ts" setup>
definePageMeta({
layout: 'main-header'
});
</script>
<template>
<section>
<h1>Conditions Générales dUtilisation de la Boussole PLUSS</h1>
<cgu />
<nuxt-link class="button gray button-link" to="/">Retour à l'accueil</nuxt-link>
</section>
</template>
<style lang="scss" scoped>
.button-link {
margin: $medium 0;
}
</style>