-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcreateclusters.html
More file actions
49 lines (47 loc) · 1.29 KB
/
Copy pathcreateclusters.html
File metadata and controls
49 lines (47 loc) · 1.29 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
<html lang="en">
<head>
<title>The Neighborhood</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="https://www.w3schools.com/lib/w3data.js"></script>
</head>
<body>
<!-- Header here -->
<div w3-include-html="moderatorheader.html"></div>
<script>
w3IncludeHTML();
</script>
<div class="container" style="text-align: center">
<div class="jumbotron">
<h2>List of Clusters to be created</h2>
</div>
<div class="container">
<table class="table table-hover">
<thead>
<tr>
<th>Name</th>
<th>Admin assigned</th>
<th>Status</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="clusterdetails.html">CLuster1</a></td>
<td>Smith</td>
<td>50</td>
</tr>
<!-- Data to be retrived from db-->
</tbody>
</table>
</div>
</div>
<div w3-include-html="moderatorfooter.html"></div>
<script>
w3IncludeHTML();
</script>
<!-- Footer here -->
</body>
</html>