102 lines
4.2 KiB
PHP
102 lines
4.2 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>AgroDrone Control - Mission Dashboard</title>
|
|
<meta name="description" content="Dashboard for managing agricultural drone missions.">
|
|
|
|
<!-- Open Graph -->
|
|
<meta property="og:title" content="AgroDrone Control">
|
|
<meta property="og:description" content="Dashboard for managing agricultural drone missions.">
|
|
<meta property="og:image" content="https://picsum.photos/seed/drone1/400/300">
|
|
<meta property="og:url" content="">
|
|
<meta property="og:type" content="website">
|
|
|
|
<!-- Bootstrap 5 CSS -->
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
|
|
<!-- Custom CSS -->
|
|
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
|
|
|
|
<!-- Feather Icons -->
|
|
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
|
|
|
|
</head>
|
|
<body>
|
|
|
|
<header class="header text-center">
|
|
<div class="container">
|
|
<h1 class="display-4">AgroDrone Control</h1>
|
|
<p class="lead">Welcome to your mission control center</p>
|
|
</div>
|
|
</header>
|
|
|
|
<main class="container">
|
|
<div class="d-flex justify-content-between align-items-center mb-4">
|
|
<h2 class="h4">Mission Dashboard</h2>
|
|
<button id="createMissionBtn" class="btn btn-primary">
|
|
<i data-feather="plus" class="me-1"></i> Create New Mission
|
|
</button>
|
|
</div>
|
|
|
|
<div class="mission-table table-responsive">
|
|
<table class="table table-hover align-middle">
|
|
<thead class="table-light">
|
|
<tr>
|
|
<th scope="col">Mission Name</th>
|
|
<th scope="col">Drone</th>
|
|
<th scope="col">Status</th>
|
|
<th scope="col">Date</th>
|
|
<th scope="col">Actions</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>Vineyard Spraying - Block A</td>
|
|
<td>AG-Drone 01</td>
|
|
<td><span class="status-badge status-completed">Completed</span></td>
|
|
<td>2025-09-26</td>
|
|
<td><button class="btn btn-sm btn-outline-secondary"><i data-feather="eye"></i> View</button></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Row Monitoring - Section 3</td>
|
|
<td>AG-Drone 02</td>
|
|
<td><span class="status-badge status-in-progress">In Progress</span></td>
|
|
<td>2025-09-27</td>
|
|
<td><button class="btn btn-sm btn-outline-secondary"><i data-feather="eye"></i> View</button></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Pest Analysis - North Field</td>
|
|
<td>AG-Drone 01</td>
|
|
<td><span class="status-badge status-pending">Pending</span></td>
|
|
<td>2025-09-28</td>
|
|
<td><button class="btn btn-sm btn-outline-secondary"><i data-feather="eye"></i> View</button></td>
|
|
</tr>
|
|
<tr>
|
|
<td>Soil Sampling - West Ridge</td>
|
|
<td>AG-Drone 03</td>
|
|
<td><span class="status-badge status-pending">Pending</span></td>
|
|
<td>2025-09-29</td>
|
|
<td><button class="btn btn-sm btn-outline-secondary"><i data-feather="eye"></i> View</button></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</main>
|
|
|
|
<footer class="footer text-center">
|
|
<p>© <?php echo date("Y"); ?> AgroDrone Control. All Rights Reserved.</p>
|
|
</footer>
|
|
|
|
<!-- Bootstrap 5 JS -->
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
|
|
<!-- Custom JS -->
|
|
<script src="assets/js/main.js?v=<?php echo time(); ?>"></script>
|
|
|
|
<script>
|
|
feather.replace()
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|