Added new buttons to see all proofs and challenges already execute

This commit is contained in:
2026-04-14 18:04:23 +01:00
parent b551659a69
commit af04b03bb7
3 changed files with 15 additions and 4 deletions
@@ -10,18 +10,22 @@
<ion-item lines="full">
@switch (n) {
@case (1) {
<p class="text-sm text-gray-600">Modifier le pseudo</p>
<p class="text-sm text-gray-600">Ma galerie</p>
<ion-icon slot="end" class="text-xl text-gray-400" name="chevron"></ion-icon>
}
@case (2) {
<p class="text-sm text-gray-600">Modifier l'email</p>
<p class="text-sm text-gray-600">Modifier le pseudo</p>
<ion-icon slot="end" class="text-xl text-gray-400" name="chevron"></ion-icon>
}
@case (3) {
<p class="text-sm text-gray-600">Modifier le mot de passe</p>
<p class="text-sm text-gray-600">Modifier l'email</p>
<ion-icon slot="end" class="text-xl text-gray-400" name="chevron"></ion-icon>
}
@case (4) {
<p class="text-sm text-gray-600">Modifier le mot de passe</p>
<ion-icon slot="end" class="text-xl text-gray-400" name="chevron"></ion-icon>
}
@case (5) {
<p class="text-sm text-gray-600">Changer de désignation</p>
<ion-icon slot="end" class="text-xl text-gray-400" name="chevron"></ion-icon>
}
@@ -18,5 +18,5 @@ addIcons({
})
export class SettingsOptionsComponent {
options = [1, 2, 3, 4, 5];
options = [1, 2, 3, 4, 5, 6];
}
+7
View File
@@ -57,6 +57,13 @@
<app-title-part textInfo="Paramètres de compte"></app-title-part>
<app-settings-options></app-settings-options>
</div>
<div class="mt-4">
<app-title-part textInfo="Mes participations"></app-title-part>
<div class="rounded-lg px-5 m-3 bg-white border border-gray-200 grid grid-cols-6 items-center">
<p class="col-span-4">Le défi</p>
<p class="col-span-2">La date</p>
</div>
</div>
</ion-content>
</ng-template>
</ion-modal>