-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathChangeComment.html
More file actions
44 lines (41 loc) · 1.24 KB
/
ChangeComment.html
File metadata and controls
44 lines (41 loc) · 1.24 KB
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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css" />
<title>Kommentar bearbeiten</title>
</head>
<body>
<nav id="topBar">
<a href="overview.html">
<b>⟨⟨ Schülerverwaltung</b>
</a>
<div>
Sie sind angemeldet als <b>Frank Müller</b>
<a class="button" href="index.html">Logout</a>
</div>
</nav>
<div id="contentBox">
<form id="dialogWindow" action="ViewStudentComments.html">
<h1>Kommentar bearbeiten:</h1>
<table>
<tr>
<th>Nachname</th>
<th>Vorname</th>
<th>Klasse</th>
</tr>
<tr>
<td>Frühh</td>
<td>Leonardo</td>
<td>5a</td>
</tr>
</table>
<textarea rows="10" cols="50" placeholder="Geben Sie hier Ihren Kommentar ein...">Schüler störte den Unterricht</textarea>
<span class="buttonColumn">
<a class="button" href="javascript:history.back()">Abbrechen</a>
<input type="submit" value="Speichern"/>
</span>
</form>
</div>
</body>
</html>