Daniel's werk
This commit is contained in:
parent
dea9ff308f
commit
f3bcc012e1
@ -42,13 +42,17 @@ ul.nv {
|
||||
color: white;
|
||||
}
|
||||
|
||||
/** Index **/
|
||||
.clickable {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.clickable:hover {
|
||||
background: #0094ff;
|
||||
}
|
||||
|
||||
/** Footer **/
|
||||
.footer {
|
||||
color: grey;
|
||||
margin-top: 50px;
|
||||
}
|
||||
|
||||
/** Table Row **/
|
||||
.clickable {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
@ -4,15 +4,13 @@
|
||||
<tr>
|
||||
<th>IBAN</th>
|
||||
<th>Saldo</th>
|
||||
<!-- <th>TIJDELIJK</th> -->
|
||||
</tr>
|
||||
<?php
|
||||
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['saldo']; ?></td>
|
||||
<!-- <td><?php echo $rekening['nr']; ?></td> -->
|
||||
</tr>
|
||||
<?php
|
||||
|
||||
|
Reference in New Issue
Block a user