1
0

Added base routing + moved rekeningen

This commit is contained in:
2017-03-30 18:56:01 +02:00
parent ffe56bcf9b
commit afc472e7d7
8 changed files with 99 additions and 36 deletions

View File

@@ -5,6 +5,7 @@
<title>Inforbank</title>
<link rel="stylesheet" href="assets/css/main.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<base href="<?= $header['base'] ?>">
</head>
<body>
<div class="header">
@@ -12,11 +13,11 @@
<div class="container">
<img src="assets/logo.png" alt="Inforbank"></img>
<div class="user">
Welkom <?= $klant['voornaam'] ?> <?php
if ($klant['tussenvoegsel'] !== "") {
echo " " . $klant['tussenvoegsel'];
Welkom <?= $header['klant']['voornaam'] ?> <?php
if ($header['klant']['tussenvoegsel'] !== "") {
echo " " . $header['klant']['tussenvoegsel'];
}
?> <?= $klant['achternaam'] ?><br/>
?> <?= $header['klant']['achternaam'] ?><br/>
<a href="logout">Uitloggen</a>
</div>
</div>
@@ -25,8 +26,7 @@
<div class="container">
<ul class="nv">
<li><a href="rekeningen">Rekeningen</a></li>
<li><a href="rekeningen">Transactie Beginnen</a></li>
<li><a href="rekeningen">Transacties</a></li>
<li><a href="berichten">Berichten</a></li>
</ul>
</div>
</div>