<div class="row mb-4">
	<div class="col-lg-12 col-md-12 mb-md-0">
		<div class="card">
			<div class="card-header pb-0">
				<div class="row">
					<div class="col-lg-6 col-7">
					
					
						<h6>Users for DNS - <?php echo $dnsInfo['portal']; ?></h6>
					</div>
					<div class="col-6 text-end">
						<a href="dashboard.php?ibo-users-add&id=<?php echo $dnsInfo['id']; ?>">
							<button class="btn btn-success btn-sm mb-0">Add New</button>
						</a>
					</div>
				</div>
			</div>
			<div class="card-body px-0 pb-2">
				<div class="container">
					<div class="row">
						<div class="col-xl-12 col-lg-12 col-md-12 d-flex flex-column ms-auto me-auto ms-lg-auto me-lg-12">
							<div class="card card-plain">
								<div class="card-body">
									<div class="table-responsive p-0">
										<table class="table align-items-center justify-content-center mb-0">
											<thead>
												<tr>
													<th class="text-uppercase text-secondary text-xxs font-weight-bolder opacity-7">MAC</th>
													<th class="text-uppercase text-secondary text-xxs font-weight-bolder opacity-7">Username</th>
													<th class="text-uppercase text-secondary text-xxs font-weight-bolder opacity-7">Password</th>
													<th style="width:50px;"></th>
												</tr>
											</thead>
											<tbody>
												<?php
												foreach ($iboUsers as $thisItem) {
												?>
													<tr>
														<td>
															<div class="d-flex px-2">
																<div class="my-auto">
																	<h6 class="mb-0 text-sm"><?php echo $thisItem['mac_address']; ?></h6>
																</div>
															</div>
														</td>
														<td>
															<div class="d-flex px-2">
																<div class="my-auto">
																	<h6 class="mb-0 text-sm"><?php echo $thisItem['username']; ?></h6>
																</div>
															</div>
														</td>
														<td>
															<div class="d-flex px-2">
																<div class="my-auto">
																	<h6 class="mb-0 text-sm"><?php echo $thisItem['password']; ?></h6>
																</div>
															</div>
														</td>
														<td class="align-right">
															<a href="dashboard.php?ibo-users-edit&section=<?php echo $dnsInfo['id']; ?>&id=<?php echo base64_encode($thisItem['mac_address']); ?>">
																<button title="Edit" class="btn btn-link text-secondary mb-0">
																	<i class="fa fa-ellipsis-v text-xs"></i>
																</button>
															</a>
															<?php
															
															?>
															<a onclick="return confirm('Are you sure?');" href="action.php?ibo-users-delete&section=<?php echo $dnsInfo['id']; ?>&id=<?php echo base64_encode($thisItem['mac_address']); ?>">
																<button title="Delete" class="btn btn-link text-secondary mb-0">
																	<i class="fa fa-times text-xs text-danger"></i>
																</button>
															</a>
														</td>
													</tr>
												<?php
												}
												?>
											</tbody>
										</table>
									</div>
								</div>
							</div>
						</div>
					</div>
				</div>
			</div>
		</div>
	</div>
</div>