-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnieuwelijst.php
69 lines (53 loc) · 1.14 KB
/
nieuwelijst.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
<?php
require ('includes/initialize.php');
if (isset($_SESSION["currentPage"]) && isset($_GET["page"]))
{
$page = $_SESSION["currentPage"];
}
else
{
$page = 1;
}
?>
<!DOCTYPE html>
<html>
<head>
<?php require ('includes/headincludes.php') ?>
<link rel="stylesheet" href="style/steps.css">
<title>Nieuwe lijst<?= TITLE_SUFFIX ?></title>
</head>
<body>
<?php require ('includes/header.php') ?>
<?php require ("includes/profile-modal.php") ?>
<div id="page-info" class="modal">
<div class="modal-content">
</div>
</div>
<div class="wrapper">
</div>
<?php require ('includes/footer.php') ?>
<?php require ('includes/scripts.php') ?>
<script>
<?php
if (isset($_GET['page']) && !empty($_GET['page']))
{
echo "setTimeout(function () {nextPage(" . $_GET['page'] . ", 'none')}, 100);";
unset($_SESSION["currentPage"]);
if ($_GET["page"] == 17)
{
echo "login();";
}
}
else
{
echo "nextPage(" . $page . ", 'none');";
}
?>
</script>
<script>
function openPageInfo () {
$("#page-info").openModal();
}
</script>
</body>
</html>