participant page updated
This commit is contained in:
parent
7673e5acdb
commit
71db14b5a1
|
@ -1,6 +1,5 @@
|
||||||
<h1>Participant</h1>
|
|
||||||
|
|
||||||
<div class="container mt-4">
|
<div class="container mt-4">
|
||||||
|
<h2>Participant</h2>
|
||||||
<table class="table">
|
<table class="table">
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr>
|
<tr>
|
||||||
|
@ -35,6 +34,54 @@
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</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>
|
<script>
|
||||||
document.addEventListener('DOMContentLoaded', function () {
|
document.addEventListener('DOMContentLoaded', function () {
|
||||||
document.querySelectorAll('.autoresize').forEach(function (element) {
|
document.querySelectorAll('.autoresize').forEach(function (element) {
|
||||||
|
|
Loading…
Reference in New Issue