-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (30 loc) · 911 Bytes
/
index.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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Aufgabenliste</title>
<style>
</head>
<body>
<h1>Aufgabenliste</h1>
<ul>
<?php foreach ($tasks as $task): ?>
<li <?php echo $task->completed ? 'class="completed"' : ''; ?>>
<?php echo $task->title; ?> - Fällig: <?php echo $task->due; ?> - Zuständig: <?php echo $task->assigned_to; ?>
</li>
<?php endforeach; ?>
</ul>
</body>
</html>
/*
<?php
// task.php einbinden, um die Task-Klasse verfügbar zu machen
require 'task.php';
// Beispiel-Aufgaben erstellen
$tasks = [
new Task('Hausaufgaben beenden', 'heute', 'Maxi Mustermann', false),
new Task('Einkaufen', 'morgen', 'Erika Muster', false),
new Task('Sport machen', 'nächste Woche', 'Petra Hauser', true)
];
*/