diff options
author | Sonja Galovic <galovicsonja@gmail.com> | 2022-04-04 00:40:39 +0200 |
---|---|---|
committer | Sonja Galovic <galovicsonja@gmail.com> | 2022-04-04 00:40:39 +0200 |
commit | 5beed95078c5eec21113c9b5fede1c167e653a5e (patch) | |
tree | 4599a3e68536a8d9afd7dc45fec06a37ccd14788 /frontend/src/app/_modals/alert-dialog/alert-dialog.component.html | |
parent | 94dcb65454e55caafa0a6e36e5766144cfb204c6 (diff) |
Odradjen prikaz svih obavestenja korisniku u okviru aplikacije. (umesto alerta ide mat-dialog)
Diffstat (limited to 'frontend/src/app/_modals/alert-dialog/alert-dialog.component.html')
-rw-r--r-- | frontend/src/app/_modals/alert-dialog/alert-dialog.component.html | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/frontend/src/app/_modals/alert-dialog/alert-dialog.component.html b/frontend/src/app/_modals/alert-dialog/alert-dialog.component.html new file mode 100644 index 00000000..82365193 --- /dev/null +++ b/frontend/src/app/_modals/alert-dialog/alert-dialog.component.html @@ -0,0 +1,7 @@ +<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)="onOkClick()" style="background-color: lightgray;">OK</button> +</div>
\ No newline at end of file |