37 lines
1.4 KiB
PHP
37 lines
1.4 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="asset_guests/img/logo.png" alt=""> -->
|
|
<h1 class="sitename">Order Gizi</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">
|
|
<!-- Tombol No Order -->
|
|
<button type="button" class="btn btn-outline-success position-relative me-2" 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>
|