mirror of
https://gitlab.com/bmcgonag/get_my.git
synced 2026-03-27 00:08:49 +00:00
Added a delete confirmation modal to all views.
This commit is contained in:
parent
4d9d2acff6
commit
29ddc544e5
27 changed files with 117 additions and 127 deletions
18
client/General/DeleteConfModal/deleteConfirmationModal.html
Normal file
18
client/General/DeleteConfModal/deleteConfirmationModal.html
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
<template name="deleteConfirmationModal">
|
||||
<div id="modalDelete" class="modal">
|
||||
<div class="modal-content">
|
||||
<h4>Delete Confirmation</h4>
|
||||
You are about to permanently delete {{itemName}} from the {{viewName}} list. Are you sure?
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<div class="row">
|
||||
<div class="col s6 m6 l6">
|
||||
<a class="modal-close waves-effect waves-light btn left cancelDelete orange">Cancel</a>
|
||||
</div>
|
||||
<div class="col s6 m6 l6">
|
||||
<a class="waves-effect waves-light btn confirmDelete red right">Delete</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
Loading…
Add table
Add a link
Reference in a new issue