summaryrefslogtreecommitdiffstats
path: root/public/src/app/rule-engine/confirm-popup/confirm-popup.component.html
diff options
context:
space:
mode:
Diffstat (limited to 'public/src/app/rule-engine/confirm-popup/confirm-popup.component.html')
-rw-r--r--public/src/app/rule-engine/confirm-popup/confirm-popup.component.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/public/src/app/rule-engine/confirm-popup/confirm-popup.component.html b/public/src/app/rule-engine/confirm-popup/confirm-popup.component.html
new file mode 100644
index 0000000..49c800a
--- /dev/null
+++ b/public/src/app/rule-engine/confirm-popup/confirm-popup.component.html
@@ -0,0 +1,12 @@
+<div class="container" data-tests-id="delete-popup">
+ <div class="header">
+ Delete
+ </div>
+ <div class="content">
+ Are you sure you want to delete?
+ </div>
+ <div class="buttons">
+ <button mat-raised-button (click)="close(true)" data-tests-id="btnDelete" style="margin-right: 1rem;" color="primary">Delete</button>
+ <button mat-raised-button (click)="close(false)" data-tests-id="btnCancel" style="border: 1px solid #009FDB; color: #009FDB; background: #ffffff;">Cancel</button>
+ </div>
+</div>