DONE: enhance UI on admin and voter side, add docker config, fix delete button modal not showing

This commit is contained in:
ISMAIL MASSERAN
2026-04-02 11:59:56 +08:00
parent bed56792e6
commit 4369b079cb
31 changed files with 3044 additions and 1216 deletions
+23 -15
View File
@@ -21,8 +21,6 @@
<div id="error"></div>
<script>
window.config = {
"API": "/api/v1/", //URL OF YOUR API LOCATED
@@ -49,26 +47,36 @@
<script src="https://cdn.jsdelivr.net/npm/vue-router@3.4.9/dist/vue-router.min.js"></script>
<script src="/js/app.js"></script>
<!-- Bootstrap CSS -->
<footer class="bg-body-tertiary text-center text-lg-start">
<div class="text-muted">
<b>Koperasi Permodalan Kelantan Berhad © {{ date('Y') }} All Right Reserved</b>
<a class="text-body" href="https://koppkb.com"></a>
</div>
</footer>
</body>
<footer class="bg-body-tertiary text-center text-lg-start">
<!-- Copyright -->
<div class="text-center py-4" style="background-color: rgba(0, 0, 0, 0.05);">
<b>Koperasi Permodalan Kelantan Berhad © 2026 All Right Reserved</b>
<a class="text-body" href="https://koppkb.com"></a>
</div>
<!-- Copyright -->
</footer>
<style>
html,
body {
min-height: 100%;
}
body {
min-height: 100vh;
display: flex;
flex-direction: column;
}
#app {
flex: 1 0 auto;
}
footer {
position: fixed;
left: 0;
bottom: 0;
margin-top: auto;
width: 100%;
/* padding: 40px 0; */
}