-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCreateClass.html
More file actions
49 lines (46 loc) · 1.44 KB
/
CreateClass.html
File metadata and controls
49 lines (46 loc) · 1.44 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
45
46
47
48
49
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css" />
<title>Klasse 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="javascript:history.back()">
<h1>Klasse anlegen:</h1>
<input type="text" placeholder="Klassenname" value="5a" minlength="2" maxlength="3" pattern="[0-9]+[a-z]" required/>
<div>
Stufe:
<select title="grade" required>
<option>5</option>
<option>6</option>
<option>10</option>
</select>
</div>
<div>
Klassenlehrer:
<select title="classTeacher" required>
<option>Müller, Frank</option>
<option>Stuhl, Peter</option>
<option>Stern, Paul</option>
<option>Mayer, Hagen</option>
</select>
</div>
<span class="buttonColumn">
<a class="button" href="javascript:history.back()">Abbrechen</a>
<input type="submit" value="Weiter" />
</span>
</form>
</div>
</body>
</html>