Skip to content

Instantly share code, notes, and snippets.

@dirumahrafif
Created April 16, 2023 01:52
Show Gist options
  • Save dirumahrafif/9bfdd1d8615e9462b9d37c6aed91f76b to your computer and use it in GitHub Desktop.
Save dirumahrafif/9bfdd1d8615e9462b9d37c6aed91f76b to your computer and use it in GitHub Desktop.
Simple Menu
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Admin</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ" crossorigin="anonymous">
</head>
<body class="bg-secondary">
<div class="bg-white container-sm col-6 border my-3 rounded px-5 py-3 pb-5">
<h1>Halo!!</h1>
<div>Selamat datang di halaman admin</div>
<div><a href="/logout" class="btn btn-sm btn-secondary">Logout >></a></div>
<div class="card mt-3">
<ul class="list-group list-group-flush">
<li class="list-group-item">Menu Operator</li>
<li class="list-group-item">Menu keuangan</li>
<li class="list-group-item">Menu Marketing</li>
</ul>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ENjdO4Dr2bkBIFxQpeoTz1HIcje39Wm4jDKdf19U8gI4ddQ3GYNS7NTKfAdVQSZe" crossorigin="anonymous">
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment