mirror of
https://github.com/akveo/ngx-admin.git
synced 2026-03-04 12:50:17 +01:00
feat(ui-features): add the modals page
This commit is contained in:
parent
c0efb43bd6
commit
8649247f87
7 changed files with 125 additions and 22 deletions
14
src/app/pages/ui-features/modals/modal/modal.component.html
Normal file
14
src/app/pages/ui-features/modals/modal/modal.component.html
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<h4 class="modal-title">{{ modalHeader }}</h4>
|
||||
<button class="close" aria-label="Close" (click)="closeModal()">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
{{ modalContent }}
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button class="btn btn-primary confirm-btn" (click)="closeModal()">Save changes</button>
|
||||
</div>
|
||||
</div>
|
||||
Loading…
Add table
Add a link
Reference in a new issue