-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathend_project.php
More file actions
49 lines (49 loc) · 1.37 KB
/
end_project.php
File metadata and controls
49 lines (49 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?php
require_once "controllers/session_check.php";
require_once "controllers/admin_check.php";
require_once "controllers/manager_check.php";
?>
<!doctype html>
<html class='bg-light'>
<head>
<?php include 'style.php'?>
<?php include 'script.php';?>
<meta charset="utf-8">
<title>Account Approval</title>
</head>
<body class='bg-light'>
<div class="p-5">
<?php include 'navbar.php';?>
</div>
<div class="container">
<div class="row">
<div class="col-md-12">
<h1 class="pb-2 text-center">Currently Active Projects</h1>
</div>
</div>
</div>
<div class="container p-0">
<div class="row">
<div class="col-lg-12">
<form method="post" action="controllers/end_project_controller.php">
<table id="endTable" class="table table-striped table-bordered">
<thead class="thead-dark">
<tr class='text-center'>
<th scope="col">#</th>
<th scope="col">Address</th>
<th scope="col">Borough</th>
<th scope="col">Start</th>
<th scope="col">End Project</th>
</tr>
</thead>
<tbody>
<?php include_once 'controllers/end_project_fill.php';?>
</tbody>
</table>
</form>
</div>
</div>
</div>
<script src="js/end_project.js"></script>
</body>
</html>