-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
34 lines (31 loc) · 1.14 KB
/
index.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
<?php include('init.php'); ?>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Spaced Out</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css" integrity="sha384-GJzZqFGwb1QTTN6wy59ffF1BuGJpLSa9DkKMp0DgiMDm4iYMj70gZWKYbI706tWS" crossorigin="anonymous">
</head>
<body>
<div class="container mt-5 mb-5">
<h2 class="mt-5 mb-3">Projects</h2>
<ul class="list-group">
<?php foreach ($projects as $project): ?>
<li class="list-group-item d-flex justify-content-between align-items-center">
<?php echo $project['name']; ?>
<span class="badge badge-secondary badge-pill"><?php echo $project['size']; ?></span>
</li>
<?php endforeach; ?>
</ul>
<h2 class="mt-5 mb-3">Databases</h2>
<ul class="list-group">
<?php foreach ($databases as $database): ?>
<li class="list-group-item d-flex justify-content-between align-items-center">
<?php echo $database['name']; ?>
<span class="badge badge-secondary badge-pill"><?php echo $database['size']; ?></span>
</li>
<?php endforeach; ?>
</ul>
</div>
</body>
</html>