participant page updated

This commit is contained in:
Ben 2024-01-13 23:57:20 -06:00
parent 7673e5acdb
commit 71db14b5a1
1 changed files with 50 additions and 3 deletions

View File

@ -1,7 +1,6 @@
<h1>Participant</h1>
<div class="container mt-4">
<table class="table">
<h2>Participant</h2>
<table class="table">
<tbody>
<tr>
<th scope="row">Program</th>
@ -35,6 +34,54 @@
</table>
</div>
<div class="container mt-4">
<h2>Workers</h2>
<table class="table">
<thead>
<tr>
<th scope="col">Name</th>
<th scope="col">Start Date</th>
<th scope="col">End Date</th>
</tr>
</thead>
<tbody>
<tr>
<td><input type="text" class="form-control" ></td>
<td><input type="date" class="form-control" placeholder="Start Date"></td>
<td><input type="date" class="form-control" placeholder="End Date"></td>
</tr>
<!-- Additional rows as needed -->
</tbody>
</table>
</div>
<div class="container mt-4">
<h2>Vendors</h2>
<table class="table">
<thead>
<tr>
<th scope="col">Name</th>
<th scope="col">Start Date</th>
<th scope="col">End Date</th>
</tr>
</thead>
<tbody>
<tr>
<td><input type="text" class="form-control" ></td>
<td><input type="date" class="form-control" placeholder="Start Date"></td>
<td><input type="date" class="form-control" placeholder="End Date"></td>
</tr>
<!-- Additional rows as needed -->
</tbody>
</table>
<button type="button" class="btn btn-outline-primary">Add New</button>
</div>
<script>
document.addEventListener('DOMContentLoaded', function () {
document.querySelectorAll('.autoresize').forEach(function (element) {