2025-09-26 12:30:20 +02:00
|
|
|
|
<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 client’s question ?</p>
|
|
|
|
|
<p>
|
|
|
|
|
Once you click the bouton YES, you will leave this page and start a search for new client’s 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">
|
|
|
|
|
|
2025-09-26 12:42:25 +02:00
|
|
|
|
<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>
|
2025-09-26 12:30:20 +02:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|