-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.php
19 lines (19 loc) · 900 Bytes
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php include(__DIR__ . '/resources/templates/header.php'); ?>
<br>
<main role="main" class="container">
<div class="jumbotron">
<img class="sticky" src="<?php echo $img; ?>" alt="Logo" style="height: 60px; width: 60px;margin-bottom: 20px;">
<h1 style="display: inline;"><?php echo $title; ?></h1>
<p class="lead"><?php echo $scopeInfo; ?></p>
<ul class="list-group list-group-flush">
<?php
foreach ($scopesDefine as $scope => $scopeDetail) {
echo '<li class="list-group-item">' . $scopeDetail . '</li>';
}
?>
</ul>
<br>
<a class="btn btn-lg btn-primary" href="<?php echo $redirectPage; ?>" role="button">Authorise</a>
</div>
</main>
<?php include(__DIR__ . '/resources/templates/footer.php'); ?>