MIF_E31220334/app/Views/superadmin/index.php

75 lines
3.2 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8" />
<title>Daftar Admin</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet" />
<style>
body {
background-color: #f8f9fa;
}
.table th,
.table td {
vertical-align: middle;
}
</style>
</head>
<body>
<div class="container py-5">
<div class="card shadow-sm">
<div class="card-header bg-primary text-white d-flex justify-content-between align-items-center">
<h4 class="mb-0">Daftar Admin</h4>
<div>
<a href="<?= base_url('superadmin/admins/create') ?>" class="btn btn-light btn-sm me-2"> Tambah Admin</a>
<a href="<?= base_url('/logout') ?>" class="btn btn-outline-light btn-sm" onclick="return confirm('Yakin ingin logout?')">🚪 Logout</a>
</div>
</div>
<div class="card-body">
<?php if (session()->getFlashdata('success')): ?>
<div class="alert alert-success alert-dismissible fade show" role="alert">
<?= session()->getFlashdata('success') ?>
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
</div>
<?php endif; ?>
<div class="table-responsive">
<table class="table table-striped align-middle">
<thead class="table-light">
<tr>
<th>👤 Username</th>
<th>📧 Email</th>
<th class="text-center">⚙️ Aksi</th>
</tr>
</thead>
<tbody>
<?php foreach ($users as $user): ?>
<tr>
<td><?= esc($user['username']) ?></td>
<td><?= esc($user['email']) ?></td>
<td class="text-center">
<a href="<?= base_url('superadmin/admins/edit/' . $user['id']) ?>" class="btn btn-sm btn-warning me-1">Edit</a>
<a href="<?= base_url('superadmin/admins/delete/' . $user['id']) ?>" class="btn btn-sm btn-danger" onclick="return confirm('Yakin ingin menghapus admin ini?')">Hapus</a>
</td>
</tr>
<?php endforeach; ?>
<?php if (empty($users)): ?>
<tr>
<td colspan="3" class="text-center text-muted">Tidak ada data admin.</td>
</tr>
<?php endif; ?>
</tbody>
</table>
</div>
</div>
</div>
</div>
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>