-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchange_map_release.php
96 lines (68 loc) · 2.72 KB
/
change_map_release.php
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html lang="en">
<head>
<title>Release Assistant - Change - Wow Effect IT</title>
<?php
include('head.html');
?>
<link href="css/css-table.css" rel="stylesheet" type="text/css">
</head>
<body id="page-top">
<div id="wrapper">
<?php
include('sidebar.php');
?>
<div id="content-wrapper" class="d-flex flex-column">
<div id="content">
<?php
include('topbar.html');
?>
<div class="container-fluid">
<h1 class="h3 mb-4 text-gray-800">Change - Wow Effect IT</h1>
<div class="card shadow mb-4">
<div class="card-body">
<div class="table-responsive">
<table class="table table-responsive table-borderless table-striped">
<thead class="thead-dark">
<tr>
<th scope="col">Release</th>
<th scope="col"></th>
</tr>
</thead>
<tbody>
<?php
echo " <tr>" . PHP_EOL;
echo " <td>Unassign</td>" . PHP_EOL;
echo " <td><a href=\"\"><i class=\"fa-solid fa-square-check\"></i></a></td>" . PHP_EOL;
echo " </tr>" . PHP_EOL;
echo " <tr>" . PHP_EOL;
echo " <td><i class=\"fa fa-layer-group\"></i> Wow Effect</td>" . PHP_EOL;
echo " <td><i class=\"fa-regular fa-square-check\"></i></td>" . PHP_EOL;
echo " </tr>" . PHP_EOL;
echo " <tr>" . PHP_EOL;
echo " <td><i class=\"fa fa-layer-group\"></i> Audiological Tests</td>" . PHP_EOL;
echo " <td><a href=\"\"><i class=\"fa-solid fa-square-check\"></i></a></td>" . PHP_EOL;
echo " </tr>" . PHP_EOL;
echo " <tr>" . PHP_EOL;
echo " <td><i class=\"fa fa-layer-group\"></i> CRM 2.0</td>" . PHP_EOL;
echo " <td><a href=\"\"><i class=\"fa-solid fa-square-check\"></i></a></td>" . PHP_EOL;
echo " </tr>" . PHP_EOL;
echo " <tr>" . PHP_EOL;
echo " <td><i class=\"fa fa-layer-group\"></i> Wow Effect (wave 2)</td>" . PHP_EOL;
echo " <td><a href=\"\"><i class=\"fa-solid fa-square-check\"></i></a></td>" . PHP_EOL;
echo " </tr>" . PHP_EOL;
?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<?php
include('bottom.html');
?>
</body>
</html>