-
Notifications
You must be signed in to change notification settings - Fork 0
/
klanthome.php
72 lines (51 loc) · 1.29 KB
/
klanthome.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<?php
session_start();
include 'db_connect.php';
$timezone = date_default_timezone_set('Europe/Amsterdam');
$date = date('H:i:s');
/*
if ($date < '12:28:00' )
{
echo "Hello";
}
else
{
echo "goodbye";
}
echo $date;
*/
?>
<!DOCTYPE html>
<html lang="en">
<head style="">
<link type="text/css" rel="stylesheet" href="style.css">
</head>
<body>
<?php include 'navbar.php'; ?>
<br>
<div>
<button onclick="location.href='./index.php'" type="button" style="width: 250px; float:right;" class="button button1" > Uitloggen </button>
<br>
<br>
</div>
<div>
<br>
<h1 class="h1" style="margin-left:20px;">Klanthome</h1>
</div>
<br>
</div>
<div style="text-align:center;">
<button onclick="location.href='./klantgegevens.php'" type="button" style="width: 250px;" class="button button1" > Klantgegevens </button>
<br>
<br>
<button onclick="location.href='./leveringstijdveranderen.php'" type="button" style="width: 250px;" class="button button1" > Leveringstijd veranderen </button>
<br>
<br>
<!--<button onclick="location.href='./login.php'" type="button" style="width: 250px;" class="button button1" > Agenda site </button> -->
</div>
</body>
<br><br><br>
<footer>
<?php include 'footer.php'; ?>
</footer>
</html>