38 أسطر
883 B
HTML
38 أسطر
883 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
|
<title>Team Availability</title>
|
|
<link rel="stylesheet" href="styles.css">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="header">
|
|
<h2>Team Availability</h2>
|
|
<div class="buttons">
|
|
<button id="saveBtn">Save</button>
|
|
</div>
|
|
</div>
|
|
<div>Click save after updating each week separately</div>
|
|
<table id="scheduleTable">
|
|
<thead>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Week</th>
|
|
<th>Mon</th>
|
|
<th>Tue</th>
|
|
<th>Wed</th>
|
|
<th>Thu</th>
|
|
<th>Fri</th>
|
|
<th>Sat</th>
|
|
<th>Sun</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="tableBody"></tbody>
|
|
</table>
|
|
</div>
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html>
|