40 lines
1.7 KiB
PHP
40 lines
1.7 KiB
PHP
<header id="header" class="header sticky-top">
|
|
|
|
<div class="branding d-flex align-items-center">
|
|
|
|
<div class="container position-relative d-flex align-items-center justify-content-between">
|
|
<a href="/" class="logo d-flex align-items-center me-auto">
|
|
<!-- Uncomment the line below if you also wish to use an image logo -->
|
|
<img src="/logo/gizi.png" alt="Logo RSAB HARAPAN KITA" class="" style="height:125px;">
|
|
<img src="/logo/logo_rsabhk.png" alt="Logo RSAB HARAPAN KITA" class="logo-img">
|
|
<h1 class="sitename"></h1>
|
|
</a>
|
|
<nav id="navmenu" class="navmenu">
|
|
{{-- <i class="mobile-nav-toggle d-xl-none bi bi-list"></i> --}}
|
|
<div class="d-flex align-items-center gap-2">
|
|
@if(!$mcu)
|
|
<button type="button" class="btn btn-success position-relative " style="font-size:14px;" onclick="mcu()">
|
|
MCU
|
|
</button>
|
|
@endif
|
|
<button type="button" class="btn btn-outline-success position-relative d-flex lh-sm" style="font-size:14px;" onclick="checkOrderHref()">
|
|
Check Order
|
|
</button>
|
|
|
|
<!-- Tombol Keranjang -->
|
|
<button type="button" class="btn btn-sm btn-success position-relative" id="cartButton" onclick="checkout()">
|
|
<i class="fa-solid fa-cart-shopping"></i>
|
|
<span class="position-absolute top-0 start-100 translate-middle badge rounded-pill bg-danger" id="cartCount" style="display: none;">
|
|
0
|
|
</span>
|
|
</button>
|
|
</div>
|
|
</nav>
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</header>
|