-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCreateComment.html
More file actions
40 lines (37 loc) · 1.18 KB
/
CreateComment.html
File metadata and controls
40 lines (37 loc) · 1.18 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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css" />
<title>Kommentar anlegen</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 anlegen:</h1>
<h2>für <b>Frühh Leonardo 5a</b></h2>
<input type="date" title="date" value="24.05.2017" required>
<select title="class" required>
<option>5a</option>
<option>10a</option>
<option>10b</option>
<option>10c</option>
</select>
<textarea rows="10" cols="50" placeholder="Geben Sie hier Ihren Kommentar ein..."></textarea>
<span class="buttonColumn">
<a class="button" href="javascript:history.back()">Abbrechen</a>
<input type="submit" value="Speichern" />
</span>
</form>
</div>
</body>
</html>