Compare commits

..

No commits in common. "4e0bd86ae1d1999078f2ae7ef2e492de03882567" and "6ba55c000b6d90fa99a16ed98a17bd61a484b92c" have entirely different histories.

View file

@ -72,7 +72,7 @@ $lateLoans = getLateLoans($pdo);
<br>
<label>Anzahl
<br>
<input type="number" name="amount" min="1" value="1" required>
<input type="number" name="amount" value="1" required>
</label>
<br>
<br>
@ -207,7 +207,6 @@ $lateLoans = getLateLoans($pdo);
<td>
<h2>Verliehene Bücher</h2>
<table>
<th>ID</th>
<th>Vorname</th>
<th>Nachname</th>
<th>Klasse/Funktion</th>
@ -217,7 +216,6 @@ $lateLoans = getLateLoans($pdo);
<th>Rückgabe fällig</th>
<?php foreach ($activeLoans as $loan): ?>
<tr>
<td>#<?= htmlspecialchars($loan['loanID']) ?></td>
<td><?= htmlspecialchars($loan['firstName']) ?></td>
<td><?= htmlspecialchars($loan['lastName']) ?></td>
<td><?= htmlspecialchars($loan['borrowerRole']) ?></td>
@ -232,7 +230,6 @@ $lateLoans = getLateLoans($pdo);
<td>
<h2>Versäumte Rückgaben</h2>
<table>
<th>ID</th>
<th>Vorname</th>
<th>Nachname</th>
<th>Klasse/Funktion</th>
@ -242,7 +239,6 @@ $lateLoans = getLateLoans($pdo);
<th>Rückgabe fällig</th>
<?php foreach ($lateLoans as $lateLoan): ?>
<tr>
<td>#<?= htmlspecialchars($lateLoan['loanID']) ?></td>
<td><?= htmlspecialchars($lateLoan['firstName']) ?></td>
<td><?= htmlspecialchars($lateLoan['lastName']) ?></td>
<td><?= htmlspecialchars($lateLoan['borrowerRole']) ?></td>