-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCreateStudent.html
39 lines (36 loc) · 1.11 KB
/
CreateStudent.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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css" />
<title>Schüler 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>Schüler anlegen:</h1>
<input type="text" placeholder="Name" minlength="2" required />
<input type="text" placeholder="Vorname" minlength="2" required />
<select title="class" required>
<option>5a</option>
<option>10a</option>
<option>10b</option>
<option>10c</option>
</select>
<span class="buttonColumn">
<a class="button" href="javascript:history.back()">Abbrechen</a>
<input type="submit" value="Weiter" />
</span>
</form>
</div>
</body>
</html>