-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcredits.php
42 lines (40 loc) · 1.57 KB
/
credits.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
<?php $page_title = "Credits";
require_once('includes/load.php');
if (!$session->isUserLoggedIn(true)) {
redirect('index', false);
};
$user = current_user();
include_once('./layouts/header.php'); ?>
<section class="text-center my-5">
<h1 class="fw-bolder mb-3">Credits</h1>
<div class="container px-5">
<h2><a style="color:black;" href="https://www.php.net/">PHP</a>
<br>
<a style="color:black;" href="https://fullcalendar.io/">FullCalendar</a>
<br>
<a style="color:black;" href="https://www.mysql.com/">MySQL</a>
<br>
<a style="color:black;" href="https://www.javascript.com/">JavaScript</a>
<br>
<a style="color:black;" href="https://getbootstrap.com/">GetBootStrap</a>
<br>
<a style="color:black;" href="https://startbootstrap.com/">StartBootStrap</a>
</h2>
<br>
</div>
</section>
<section class="py-5 bg-light">
<div class="container px-5 my-5">
<div class="row gx-5 row-cols-1 row-cols-sm-2 row-cols-xl-4 justify-content-center">
<div class="col mb-5 mb-5 mb-xl-0">
<div class="text-center">
<img class="img-fluid rounded-circle mb-4 px-4" src="./libs/img/moi.jpg" alt="..." width="200" height="200" />
<h5 class="fw-bolder">Guillaume Boen</h5>
<div class="fst-italic text-muted">On est là hn...</div>
</div>
</div>
</div>
</div>
</section>
</main>
<?php include_once('./layouts/footer.php'); ?>