1
0

Added base page layout

This commit is contained in:
2017-03-26 16:18:47 +02:00
parent 014adeed65
commit 90201e85cd
7 changed files with 72 additions and 15 deletions

View File

@ -1,11 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>Inforbank</title>
</head>
<body>
<p>Welkom klant <?= $_SESSION['userid'] ?></p>
<a href="/logout">Uitloggen</a>
</body>
</html>
<?php include '__header.phtml'; ?>
<p>Welkom klant <?= $_SESSION['userid'] ?></p>
<a href="/logout">Uitloggen</a>
<br/>
<pre><?php echo json_encode($klant); ?></pre>
<pre><?php echo json_encode($rekeningen); ?></pre>
<?php include '__footer.phtml'; ?>