52 lines
1.8 KiB
HTML
52 lines
1.8 KiB
HTML
<div class="card card-body" style="background-color: #5e6c79;">
|
|
<table table table-striped table-dark table-hover>
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">Item</th>
|
|
<th scope="col">Requester</th>
|
|
<th scope="col">Gottem?</th>
|
|
<th scope="col">Remove</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr scope="row" id="row-1">
|
|
<td>Water, 1 slab</td>
|
|
<td>Benjamyn</td>
|
|
<td>
|
|
<form><button class="btn btn-secondary" type="submit" formaction="/post" formmethod="POST"
|
|
name="got" value="1">No</button></form>
|
|
</td>
|
|
<td>
|
|
<form>
|
|
<button class="btn btn-secondary" type="submit" formaction="/post" formmethod="POST" name="rem"
|
|
value="1">Remove</button>
|
|
</form>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr scope="row" id="row-2">
|
|
<td>V nice</td>
|
|
<td>Luke</td>
|
|
<td>
|
|
<form><button class="btn btn-secondary" type="submit" formaction="/post" formmethod="POST"
|
|
name="got" value="2">No</button></form>
|
|
</td>
|
|
<td>
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<tr scope="row" id="row-3">
|
|
<td>Pretty quick too</td>
|
|
<td>Luke</td>
|
|
<td>
|
|
<form><button class="btn btn-secondary" type="submit" formaction="/post" formmethod="POST"
|
|
name="got" value="3">No</button></form>
|
|
</td>
|
|
<td>
|
|
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div> |