ng-implementation/my-workspace/projects/sae-lib/modal/confirm/confirm.html
2025-09-26 12:42:25 +02:00

40 lines
1.3 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<div class="confirm-modal-background">
<div class="confirm-modal">
<div class="title">
<ng-content select="modal-title">Search for new question</ng-content>
</div>
<div class="body">
<ng-content select="modal-main"></ng-content>
<ng-content>
<p>Do you need a search for new clients question ?</p>
<p>
Once you click the bouton YES, you will leave this page and start a search for new clients question.
</p>
<sae-alert-box [alertKind]="'warning'"
[message]="'Current search results will disappear. Please copy important contents before leaving.'"></sae-alert-box>
</ng-content>
</div>
<div class="footer">
<div class="footer-text">
<ng-content select="modal-footer"></ng-content>
</div>
<div class="actions">
<div (click)="confirm()" class="confirm">
<ng-content select="modal-confirm">
<sae-m-button [kind]="'ghost'">Yes</sae-m-button>
</ng-content>
</div>
<div (click)="reject()" class="reject">
<ng-content select="modal-reject">
<sae-m-button [kind]="'primary'">No, i stay</sae-m-button>
</ng-content>
</div>
</div>
</div>
</div>
</div>