Advertisement
fadlyshafa

Untitled

Sep 11th, 2019
518
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.34 KB | None | 0 0
  1. <div class="modal fade" id="modal-hapus" tabindex="-1" role="dialog" aria-labelledby="modal-notification" aria-hidden="true">
  2.       <div class="modal-dialog modal-default modal-dialog-centered modal-" role="document">
  3.         <div class="modal-content bg-gradient-danger">
  4.  
  5.           <div class="modal-header">
  6.             <h6 class="modal-title" id="modal-title-notification">Your attention is required</h6>
  7.             <button type="button" class="close" data-dismiss="modal" aria-label="Close">
  8.               <span aria-hidden="true">×</span>
  9.             </button>
  10.           </div>
  11.  
  12.           <div class="modal-body">
  13.  
  14.             <div class="py-3 text-center">
  15.               <i class="ni ni-bell-55 ni-3x"></i>
  16.               <h4 class="heading mt-4">Apakah kamu yakin ingin menghapus data ini?</h4>
  17.             </div>
  18.  
  19.           </div>
  20.  
  21.           <div class="modal-footer">
  22.             <form action="" method="post">
  23.               {{ csrf_field() }}
  24.               {{ method_field('delete') }}
  25.               <p>
  26.               <button type="submit" class="btn btn-danger btn-flat btn-sm menu-sidebar">Ok, Hapus</button>
  27.                 <button type="button" class="btn btn-link text-white ml-auto" data-dismiss="modal">Close</button>
  28.               </p>
  29.             </form>
  30.           </div>
  31.  
  32.         </div>
  33.       </div>
  34.     </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement