1
0
Fork 0

Daniel's werk

merge-requests/3/head
Christiaan Goossens 7 years ago
parent dea9ff308f
commit f3bcc012e1

@ -42,13 +42,17 @@ ul.nv {
color: white; color: white;
} }
/** Index **/
.clickable {
cursor: pointer;
}
.clickable:hover {
background: #0094ff;
}
/** Footer **/ /** Footer **/
.footer { .footer {
color: grey; color: grey;
margin-top: 50px; margin-top: 50px;
} }
/** Table Row **/
.clickable {
cursor: pointer;
}

@ -4,15 +4,13 @@
<tr> <tr>
<th>IBAN</th> <th>IBAN</th>
<th>Saldo</th> <th>Saldo</th>
<!-- <th>TIJDELIJK</th> -->
</tr> </tr>
<?php <?php
foreach ($rekeningen as $rekening) { foreach ($rekeningen as $rekening) {
?> ?>
<tr onclick="document.location.href = 'rekeningen/<?php echo $rekening['nr'] ?>'"> <tr class="clickable" onclick="document.location.href = 'rekeningen/<?php echo $rekening['nr'] ?>'">
<td><?php echo $rekening['iban']; ?></td> <td><?php echo $rekening['iban']; ?></td>
<td><?php echo "&euro;" . $rekening['saldo']; ?></td> <td><?php echo "&euro;" . $rekening['saldo']; ?></td>
<!-- <td><?php echo $rekening['nr']; ?></td> -->
</tr> </tr>
<?php <?php