Siopas Inventory PETI for ISTW Website
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

148 lines
5.0 KiB

1 year ago
<!DOCTYPE html>
<html lang="en">
<title>@yield('title')</title>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title>SB Admin 2 - Dashboard</title>
@include('layouts.link')
</head>
1 year ago
{{-- <style>
/* CSS untuk membuat alert mengambang */
.floating-alert {
position: fixed;
/* height: 100%; */
width: 80%;
top: 100px;
right: 30px;
z-index: 9999;
}
</style> --}}
1 year ago
<body id="page-top">
@stack('style')
<!-- Page Wrapper -->
<div id="wrapper">
<!-- Sidebar -->
@include('layouts.sidebar')
<!-- Content Wrapper -->
<div id="content-wrapper" class="d-flex flex-column">
<!-- Main Content -->
<div id="content">
<!-- Topbar -->
@include('layouts.navbar')
<!-- Begin Page Content -->
<div class="container-fluid">
1 year ago
<!-- allert update data foto -->
{{-- @if (session()->has('success'))
<div id="success-alert" class="alert alert-success floating-alert">
{{ session()->get('success') }}
</div>
@elseif(session()->has('error'))
<div id="error-alert" class="alert alert-danger floating-alert">
X {{ session()->get('error') }}
</div>
@endif --}}
@if (session()->has('success'))
<div id="success-alert" class="alert alert-success">
{{ session()->get('success') }}
</div>
@elseif(session()->has('error'))
<div id="success-alert" class="alert alert-danger">
X {{ session()->get('error') }}
</div>
@endif
<!-- allert update data foto -->
1 year ago
@yield('content')
</div>
<!-- /.container-fluid -->
</div>
<!-- End of Main Content -->
<!-- Footer -->
<footer class="sticky-footer bg-white">
<div class="container my-auto">
<div class="copyright text-center my-auto">
<span>Copyright &copy; Your Website 2021</span>
</div>
</div>
</footer>
<!-- End of Footer -->
</div>
<!-- End of Content Wrapper -->
</div>
<!-- End of Page Wrapper -->
<!-- Scroll to Top Button-->
<a class="scroll-to-top rounded" href="#page-top">
<i class="fas fa-angle-up"></i>
</a>
<!-- Logout Modal-->
<div class="modal fade" id="logoutModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel"
aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
1 year ago
<h5 class="modal-title" id="exampleModalLabel">Apakah anda yakin ingin keluar?</h5>
1 year ago
<button class="close" type="button" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
1 year ago
<div class="modal-body">Pilih "Logout" di bawah ini jika Anda siap untuk mengakhiri sesi Anda saat ini.
</div>
1 year ago
<div class="modal-footer">
<button class="btn btn-secondary" type="button" data-dismiss="modal">Cancel</button>
1 year ago
<form method="POST" action="{{ route('logout') }}">
@csrf
<button class="btn btn-danger" style="cursor: pointer" type="submit">Logout</button>
</form>
1 year ago
</div>
</div>
</div>
</div>
@include('layouts.script')
1 year ago
1 year ago
<!-- Batas waktu alert -->
<script>
// Hapus alert setelah 3 detik
setTimeout(function() {
var successAlert = document.getElementById('success-alert');
if (successAlert) {
successAlert.remove();
}
}, 3000); // 3000 milidetik = 3 detik
</script>
<!-- Batas waktu alert -->
1 year ago
<!-- update data foto -->
<script>
$(document).ready(function() {
$('#photo').change(function() {
let reader = new FileReader();
reader.onload = (e) => {
$('.profile-image').attr('src', e.target.result);
}
reader.readAsDataURL(this.files[0]);
});
$('.profile-image').click(function() {
$('.form-control-file').click();
});
});
</script>
<!-- End update data foto -->
1 year ago
</body>
</html>