2022-01-19 10:57:26 +01:00
|
|
|
<app-header></app-header>
|
2022-02-25 12:52:25 +01:00
|
|
|
|
2022-02-14 15:45:32 +01:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-auto">
|
2022-03-07 11:06:24 +01:00
|
|
|
<app-side-bar [backgroundColor]="'#7879F1'"></app-side-bar>
|
2022-02-14 15:45:32 +01:00
|
|
|
</div>
|
2022-03-07 11:06:24 +01:00
|
|
|
<div class="col text-center">
|
|
|
|
<main class="contenu">
|
2022-03-04 18:07:59 +01:00
|
|
|
<p class="d-flex justify-content-center">Êtes-vous sur de vouloir Supprimer ce compte ?</p>
|
|
|
|
<div class="d-flex justify-content-center">
|
|
|
|
<button
|
|
|
|
id = "bouton-ajout"
|
|
|
|
type="button"
|
|
|
|
class="btn btn-primary btn-lg bouton-non"
|
2022-03-06 20:49:53 +01:00
|
|
|
routerLink="/compte"
|
2022-03-04 18:07:59 +01:00
|
|
|
routerLinkActive="active-custom"
|
2022-03-07 10:32:37 +01:00
|
|
|
[hidden]="parent == false"
|
2022-03-04 18:07:59 +01:00
|
|
|
>Non, je ne souhaite pas supprimer ce compte
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
<div class="d-flex justify-content-center">
|
|
|
|
<button
|
|
|
|
id = "bouton-ajout"
|
|
|
|
type="button"
|
|
|
|
class="btn btn-primary btn-lg bouton-oui"
|
2022-03-08 13:06:48 +01:00
|
|
|
(click)="onClickDelete()"
|
2022-03-07 10:32:37 +01:00
|
|
|
[hidden]="parent == false"
|
2022-03-04 18:07:59 +01:00
|
|
|
>Oui, je souhaite supprimer ce compte
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</main>
|
2022-02-14 15:45:32 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2022-03-07 11:06:24 +01:00
|
|
|
<app-footer></app-footer>
|