Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- @include('layouts.head')
- </head>
- <body class="hold-transition skin-blue sidebar-mini">
- <div class="wrapper">
- <header class="main-header">
- @include('layouts.header')
- </header>
- <!-- Left side column. contains the logo and sidebar -->
- <aside class="main-sidebar">
- <!-- sidebar: style can be found in sidebar.less -->
- @include('layouts.sidebar')
- <!-- /.sidebar -->
- </aside>
- <!-- Content Wrapper. Contains page content -->
- <div class="content-wrapper">
- <!-- Content Header (Page header) -->
- <!-- Main content -->
- <section class="content">
- <div class="row">
- <div class="col-md-12">
- <div class="pull-right">
- </div>
- </div>
- </div>
- @yield('content')
- <!-- modal hapus -->
- <div class="modal fade" id="modal-hapus" tabindex="-1" role="dialog" aria-labelledby="modal-notification" aria-hidden="true">
- <div class="modal-dialog modal-default modal-dialog-centered modal-" role="document">
- <div class="modal-content bg-gradient-danger">
- <div class="modal-header">
- <h6 class="modal-title" id="modal-title-notification">Your attention is required</h6>
- <button type="button" class="close" data-dismiss="modal" aria-label="Close">
- <span aria-hidden="true">×</span>
- </button>
- </div>
- <div class="modal-body">
- <div class="py-3 text-center">
- <i class="ni ni-bell-55 ni-3x"></i>
- <h4 class="heading mt-4">Apakah kamu yakin ingin menghapus data ini?</h4>
- </div>
- </div>
- <div class="modal-footer">
- <form action="" method="post">
- {{ csrf_field() }}
- {{ method_field('delete') }}
- <p>
- <button type="submit" class="btn btn-danger btn-flat btn-sm menu-sidebar">Ok, Hapus</button>
- <button type="button" class="btn btn-link text-white ml-auto" data-dismiss="modal">Close</button>
- </p>
- </form>
- </div>
- </div>
- </div>
- </div>
- <!-- Modal -->
- <div class="modal fade" id="modal-sync" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
- <div class="modal-dialog" role="document">
- <div class="modal-content">
- <div class="modal-header">
- <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
- <h4 class="modal-title" id="myModalLabel">Password Sync Ulang</h4>
- </div>
- <div class="modal-body">
- <form role="form" method="post" action="{{ url('sync-ulang') }}">
- {{ csrf_field() }}
- <div class="box-body">
- <div class="form-group">
- <label for="exampleInputPassword1">Masukkan Password</label>
- <input type="password" name="password" class="form-control" id="exampleInputPassword1" placeholder="Password">
- </div>
- </div>
- <!-- /.box-body -->
- <div class="box-footer">
- <button type="submit" class="btn btn-primary btn-flat">Submit</button>
- </div>
- </form>
- </div>
- <div class="modal-footer">
- <!-- <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
- <button type="button" class="btn btn-primary">Save changes</button> -->
- </div>
- </div>
- </div>
- </div>
- </section>
- <!-- /.content -->
- </div>
- <!-- /.content-wrapper -->
- <footer class="main-footer">
- <div class="pull-right hidden-xs">
- <!-- <b>(021)</b>7398615 -->
- </div>
- <strong>
- informasi teknis/jasa pembuatan website : <br>
- Fadly Rifai <br>
- Telp: 0896-0849-8550 e-mail: [email protected]
- </strong>
- </footer>
- <!-- Control Sidebar -->
- <!-- /.control-sidebar -->
- <!-- Add the sidebar's background. This div must be placed
- immediately after the control sidebar -->
- <div class="control-sidebar-bg"></div>
- </div>
- <!-- ./wrapper -->
- @include('layouts.script')
- <script type="text/javascript">
- $(document).ready( function () {
- $('.myTable').DataTable();
- // $('.sync-ulang').click(function(e){
- // e.preventDefault();
- // $('#modal-sync').modal();
- // })
- } );
- </script>
- @yield('scripts')
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment