aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/_modals/yes-no-dialog/yes-no-dialog.component.html
diff options
context:
space:
mode:
authorSonja Galovic <galovicsonja@gmail.com>2022-04-12 22:59:12 +0200
committerSonja Galovic <galovicsonja@gmail.com>2022-04-12 22:59:12 +0200
commit1330e8000924aa64232f1f160b32f49e20bd9958 (patch)
tree626f701403b59c5040a911714ce50f5e0fde707c /frontend/src/app/_modals/yes-no-dialog/yes-no-dialog.component.html
parent3f17af55326b0c901fddd6eb20767b4c068a779b (diff)
parentdc4d2497435a7c038034f02641542cde10cf31a1 (diff)
Merge branch 'dev' of http://gitlab.pmf.kg.ac.rs/igrannonica/neuronstellar into dev
# Conflicts: # frontend/src/app/app.module.ts
Diffstat (limited to 'frontend/src/app/_modals/yes-no-dialog/yes-no-dialog.component.html')
-rw-r--r--frontend/src/app/_modals/yes-no-dialog/yes-no-dialog.component.html8
1 files changed, 8 insertions, 0 deletions
diff --git a/frontend/src/app/_modals/yes-no-dialog/yes-no-dialog.component.html b/frontend/src/app/_modals/yes-no-dialog/yes-no-dialog.component.html
new file mode 100644
index 00000000..06e74093
--- /dev/null
+++ b/frontend/src/app/_modals/yes-no-dialog/yes-no-dialog.component.html
@@ -0,0 +1,8 @@
+<h2 mat-dialog-title class="text-muted">{{data.title}}</h2>
+<div mat-dialog-content class="mt-4" style="color: rgb(81, 76, 76);">
+ {{data.message}}
+</div>
+<div mat-dialog-actions class="d-flex justify-content-center mt-4">
+ <button mat-button cdkFocusInitial (click)="onYesClick()" style="background-color: lightgray;">Da</button>
+ <button mat-button cdkFocusInitial (click)="onNoClick()" style="background-color: lightgray;">Ne</button>
+</div> \ No newline at end of file