-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.php
More file actions
72 lines (68 loc) · 2.05 KB
/
about.php
File metadata and controls
72 lines (68 loc) · 2.05 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<?php
include_once 'includes/header.php';
?>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Group c Members</title>
<style>
table {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
}
th, td {
border: 1px solid black;
padding: 8px;
text-align: left;
}
tfoot td {
font-weight: bold;
background-color: #f2f2f2;
}
</style>
</head>
<div class="form-container">
<table>
<thead>
<tr>
<th>Name</th>
<th>Registration Number</th>
</tr>
</thead>
<tbody>
<tr>
<td>Tulinawe Ismail</td>
<td>23/U/18058/EVE</td>
</tr>
<tr>
<td>Boonabaana Bronia</td>
<td>23/U/07647/EVE</td>
<!-- <td><img src="assets/grouppics/Arnold.jpg" alt=""></td> -->
</tr>
<tr>
<td>Mwesigwa Arnold</td>
<td>23/U/24738/PS</td>
<!-- <td><img src="assets/grouppics/Arnold.jpg" alt=""></td> -->
</tr>
<tr>
<td>Naisanga Patricia</td>
<td>23/U/13204/EVE</td>
<!-- <td><img src="assets/grouppics/Arnold.jpg" alt=""></td> -->
</tr>
<tr>
<td>Nakyambadde Mariam</td>
<td>23/U/13953/EVE</td>
<!-- <td><img src="assets/grouppics/Arnold.jpg" alt=""></td> -->
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="5">Total Students: 5</td>
</tr>
</tfoot>
</table>
<p>This group website has been uploaded to</p>
<a href="http://groupc.rf.gd/UserManagementSystem">groupc.rf.gd/UserManagementSystem</a>
</div>
<?php include_once 'includes/footer.php'; ?>