1
0
This repository has been archived on 2017-06-06. You can view files and clone it, but cannot push or open issues or pull requests.
informaticaD4P-2017/templates/index.phtml

20 lines
701 B
PHTML
Raw Normal View History

2017-03-26 14:18:47 +00:00
<?php include '__header.phtml'; ?>
2017-03-31 16:22:04 +00:00
<h2 class="page-header">Mijn rekeningen<a class="btn btn-default pull-right" href="overboeking" role="button">Nieuwe overboeking</a></h2>
2017-03-29 09:39:26 +00:00
2017-03-31 16:22:04 +00:00
<?php
foreach ($rekeningen as $rekening) {
?>
<a class="clickable" onclick="document.location.href = 'rekeningen/<?php echo $rekening['nr'] ?>'"><div class="panel panel-default">
<div class="panel-body">
<h4><?php echo $rekening['naam']; ?><span class="pull-right big"><?php echo money_format('%(#1n', $rekening['saldo']); ?></span></h4>
<p><?php echo $rekening['iban']; ?></p>
</div>
</div></a>
<?php
}
?>
2017-03-26 14:18:47 +00:00
<?php include '__footer.phtml'; ?>