72 lines
2.6 KiB
PHP
72 lines
2.6 KiB
PHP
<?php
|
|
session_start();
|
|
require_once 'includes/auth_helpers.php';
|
|
require_once 'db/config.php';
|
|
|
|
redirect_if_not_authenticated();
|
|
|
|
$pdo = db();
|
|
$stmt = $pdo->query('SELECT id, application_id, company_name, status, created_at FROM customer_applications ORDER BY created_at DESC');
|
|
$applications = $stmt->fetchAll();
|
|
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>View Applications</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
<nav class="navbar navbar-expand-lg navbar-light bg-light">
|
|
<div class="container-fluid">
|
|
<a class="navbar-brand" href="#">Customer Master</a>
|
|
<div class="collapse navbar-collapse">
|
|
<ul class="navbar-nav ms-auto">
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="index.php">Dashboard</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="logout.php">Logout</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
<div class="container mt-4">
|
|
<h2>Submitted Applications</h2>
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Application ID</th>
|
|
<th>Company Name</th>
|
|
<th>Status</th>
|
|
<th>Submitted At</th>
|
|
<th>Action</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php if (empty($applications)): ?>
|
|
<tr>
|
|
<td colspan="5" class="text-center">No applications found.</td>
|
|
</tr>
|
|
<?php else: ?>
|
|
<?php foreach ($applications as $app): ?>
|
|
<tr>
|
|
<td><?= htmlspecialchars($app['application_id']) ?></td>
|
|
<td><?= htmlspecialchars($app['company_name']) ?></td>
|
|
<td><?= htmlspecialchars($app['status']) ?></td>
|
|
<td><?= htmlspecialchars($app['created_at']) ?></td>
|
|
<td>
|
|
<a href="view_application.php?id=<?= $app['id'] ?>" class="btn btn-primary btn-sm">View</a>
|
|
</td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
<?php endif; ?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</body>
|
|
</html>
|