fadlyshafa

Untitled

Feb 29th, 2020
685
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 4.64 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.   @include('layouts.head')
  5. </head>
  6. <body class="hold-transition skin-blue sidebar-mini">
  7. <div class="wrapper">
  8.  
  9.   <header class="main-header">
  10.     @include('layouts.header')
  11.   </header>
  12.   <!-- Left side column. contains the logo and sidebar -->
  13.   <aside class="main-sidebar">
  14.     <!-- sidebar: style can be found in sidebar.less -->
  15.     @include('layouts.sidebar')
  16.     <!-- /.sidebar -->
  17.   </aside>
  18.  
  19.   <!-- Content Wrapper. Contains page content -->
  20.   <div class="content-wrapper">
  21.     <!-- Content Header (Page header) -->
  22.    
  23.  
  24.     <!-- Main content -->
  25.     <section class="content">
  26.  
  27.       <div class="row">
  28.         <div class="col-md-12">
  29.           <div class="pull-right">
  30.            
  31.           </div>
  32.         </div>
  33.       </div>
  34.  
  35.      
  36.       @yield('content')
  37.  
  38.       <!-- modal hapus -->
  39.  <div class="modal fade" id="modal-hapus" tabindex="-1" role="dialog" aria-labelledby="modal-notification" aria-hidden="true">
  40.       <div class="modal-dialog modal-default modal-dialog-centered modal-" role="document">
  41.         <div class="modal-content bg-gradient-danger">
  42.  
  43.           <div class="modal-header">
  44.             <h6 class="modal-title" id="modal-title-notification">Your attention is required</h6>
  45.             <button type="button" class="close" data-dismiss="modal" aria-label="Close">
  46.               <span aria-hidden="true">×</span>
  47.             </button>
  48.           </div>
  49.  
  50.           <div class="modal-body">
  51.  
  52.             <div class="py-3 text-center">
  53.               <i class="ni ni-bell-55 ni-3x"></i>
  54.               <h4 class="heading mt-4">Apakah kamu yakin ingin menghapus data ini?</h4>
  55.             </div>
  56.  
  57.           </div>
  58.  
  59.           <div class="modal-footer">
  60.             <form action="" method="post">
  61.               {{ csrf_field() }}
  62.               {{ method_field('delete') }}
  63.               <p>
  64.               <button type="submit" class="btn btn-danger btn-flat btn-sm menu-sidebar">Ok, Hapus</button>
  65.                 <button type="button" class="btn btn-link text-white ml-auto" data-dismiss="modal">Close</button>
  66.               </p>
  67.             </form>
  68.           </div>
  69.  
  70.         </div>
  71.       </div>
  72.     </div>
  73.  
  74.  
  75.  
  76.       <!-- Modal -->
  77.       <div class="modal fade" id="modal-sync" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
  78.         <div class="modal-dialog" role="document">
  79.           <div class="modal-content">
  80.             <div class="modal-header">
  81.               <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
  82.               <h4 class="modal-title" id="myModalLabel">Password Sync Ulang</h4>
  83.             </div>
  84.             <div class="modal-body">
  85.              
  86.               <form role="form" method="post" action="{{ url('sync-ulang') }}">
  87.               {{ csrf_field() }}
  88.                 <div class="box-body">
  89.                   <div class="form-group">
  90.                     <label for="exampleInputPassword1">Masukkan Password</label>
  91.                     <input type="password" name="password" class="form-control" id="exampleInputPassword1" placeholder="Password">
  92.                   </div>
  93.                 </div>
  94.                 <!-- /.box-body -->
  95.  
  96.                 <div class="box-footer">
  97.                   <button type="submit" class="btn btn-primary btn-flat">Submit</button>
  98.                 </div>
  99.               </form>
  100.  
  101.             </div>
  102.             <div class="modal-footer">
  103.               <!-- <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
  104.              <button type="button" class="btn btn-primary">Save changes</button> -->
  105.             </div>
  106.           </div>
  107.         </div>
  108.       </div>
  109.  
  110.  
  111.  
  112.     </section>
  113.     <!-- /.content -->
  114.   </div>
  115.   <!-- /.content-wrapper -->
  116.   <footer class="main-footer">
  117.     <div class="pull-right hidden-xs">
  118.       <!-- <b>(021)</b>7398615 -->
  119.     </div>
  120.     <strong>
  121.       informasi teknis/jasa pembuatan website : <br>
  122.       Fadly Rifai <br>
  123.       Telp: 0896-0849-8550      e-mail: [email protected]
  124.     </strong>
  125.   </footer>
  126.  
  127.   <!-- Control Sidebar -->
  128.  
  129.   <!-- /.control-sidebar -->
  130.   <!-- Add the sidebar's background. This div must be placed
  131.       immediately after the control sidebar -->
  132.   <div class="control-sidebar-bg"></div>
  133. </div>
  134. <!-- ./wrapper -->
  135.  
  136. @include('layouts.script')
  137.  
  138. <script type="text/javascript">
  139.   $(document).ready( function () {
  140.     $('.myTable').DataTable();
  141.  
  142.     // $('.sync-ulang').click(function(e){
  143.     //   e.preventDefault();
  144.     //   $('#modal-sync').modal();
  145.     // })
  146.  
  147. } );
  148. </script>
  149.  
  150. @yield('scripts')
  151. </body>
  152. </html>
Advertisement
Add Comment
Please, Sign In to add comment