2020-03-09 16:49:36 +01:00
|
|
|
<?php require __DIR__ . '/../php/dashboard.php' ?>
|
2020-03-09 19:09:41 +01:00
|
|
|
|
2020-03-12 18:10:22 +01:00
|
|
|
<header>
|
|
|
|
<h1>Gymrooster</h1>
|
|
|
|
<h3>Welkom <?=$docent['naam']?></h3>
|
|
|
|
<h3><?=date("D d M Y", strtotime($date))?></h3>
|
|
|
|
<a href="/dashboard?date=<?=date("Y-m-d", strtotime("-1 day", strtotime($date)))?>">< Dag eerder</a>
|
|
|
|
<a href="/dashboard?date=<?=date("Y-m-d", strtotime("+1 day", strtotime($date)))?>">Dag later ></a>
|
|
|
|
</header>
|
|
|
|
|
|
|
|
<form id="submitForm" action="update?date=<?=$date?>&docent=<?=$docent['id']?>" method="post">
|
2020-03-09 19:09:41 +01:00
|
|
|
<textarea name="opmerking" placeholder="Opmerkingen"><?=$rooster['opmerking']?></textarea><br>
|
|
|
|
<select name="locatie">
|
|
|
|
<?php if ($rooster['locatie'] === "1"): ?>
|
|
|
|
<option value="1">Binnen</option>
|
|
|
|
<option value="2">Buiten</option>
|
|
|
|
<?php else: ?>
|
|
|
|
<option value="2">Buiten</option>
|
|
|
|
<option value="1">Binnen</option>
|
|
|
|
<?php endif; ?>
|
2020-03-12 18:10:22 +01:00
|
|
|
</select>
|
|
|
|
<button type="submit">Opslaan</button>
|
2020-03-14 12:13:15 +01:00
|
|
|
</form>
|
|
|
|
|
|
|
|
<a href="/delete?date=<?=$date?>&docent=<?=$docent['id']?>">
|
|
|
|
Verwijder record in de database
|
|
|
|
</a>
|
2020-03-14 12:26:45 +01:00
|
|
|
|
|
|
|
|
2020-03-12 18:10:22 +01:00
|
|
|
<script>
|
|
|
|
document.getElementById('submitForm').addEventListener('submit', function(e) {
|
|
|
|
document.querySelectorAll('#submitForm button')[0].innerHTML = "✓ Opgeslagen";
|
|
|
|
});
|
2020-03-14 12:26:45 +01:00
|
|
|
</script>
|