-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
55 lines (40 loc) · 942 Bytes
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?php
include "library/db.php";
include_once "classes/worksheets_class.php";
?>
<!DOCTYPE html>
<html lang="en">
<?php
include_once 'components/header.php';
?>
<?php
//include "partials/menu.php"; I don't know what this is?
?>
<body>
<?php
include_once 'components/navbar.php';
include_once 'components/carousel.php';
?>
<?php
$worksheets = new worksheets();
$worksheets->display_3_random_worksheets();
?>
<button onclick="openPopup()">Open Popup</button>
<div id="popup" class="popup">
<h2>Popup Content</h2>
<p>This is a popup!</p>
<button onclick="closePopup()">Close</button>
</div>
<script>
function openPopup() {
document.getElementById("popup").style.display = "block";
}
function closePopup() {
document.getElementById("popup").style.display = "none";
}
</script>
<?php
include "components/footer.php";
?>
</body>
</html>