This repository has been archived by the owner on Feb 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtimesheet-set.html
52 lines (47 loc) · 1.54 KB
/
timesheet-set.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="./assets/style/main.css" rel="stylesheet">
<script src="./assets/js/timesheet-set.js" type="module" defer></script>
<title>Timesheet</title>
</head>
<body>
<nav>
<a href="./index.php">Home</a>
<a href="./timesheet-set.html">Zeiterfassung</a>
<a href="./equipment-list.php">Equipment</a>
<a href="./reservation-set.html">Reservation</a>
<a href="./index.php">Home</a>
</nav>
<main>
<h1>Timesheet</h1>
<form autocomplet="off" action="#" style="width:300px;margin:auto;">
<div class="autocomplete" style="width:300px;">
<input name="project" id="project" placeholder="Projekt">
<input type="hidden" name="project-id" id="project-id" value="">
</div>
<div class="autocomplete" style="width:300px;">
<input name="student" id="student" placeholder="Lernpartner">
<input type="hidden" name="student-id" id="student-id" value="">
</div>
<input type="date" id="date"><br>
<input type="number" id="minutes" min="15" max="240" step="15" placeholder="Minuten"><br>
<button id="add">insert</button><br>
<p id="message"></p>
</form>
<table id="time-sheet">
<thead>
<tr>
<th>Projekt</th>
<th>Datum</th>
<th>Minuten</th>
</tr>
</thead>
<tbody></tbody>
</table>
</main>
</body>
</html>