-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfaq.php
More file actions
27 lines (24 loc) · 780 Bytes
/
faq.php
File metadata and controls
27 lines (24 loc) · 780 Bytes
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
<?php
session_start();
include("actions/database-connection.php");
include("actions/check-login.php");
?>
<!doctype html>
<html lang="en">
<head>
<?php include("includes/header.php"); ?>
</head>
<body>
<div class="main-container">
<?php include("includes/components/navbar.php"); ?>
<div class="collapse-container container animation-downwards">
<div class="btn-container container mt-5"></div>
</div>
<?php include("includes/components/footer.php"); ?>
</div>
<?php include("includes/components/default-components.php"); ?>
<?php include("includes/components/modal-registration.php"); ?>
<?php include("includes/scripts.php"); ?>
<script src="src/js/components/faq-accordion.js"></script>
</body>
</html>