-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
30 lines (27 loc) · 915 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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css" />
<title>Schülerverwaltung</title>
</head>
<body>
<nav id="topBar">
<b>Schülerverwaltung</b>
<div>Bitte melden sie sich an.</div>
</nav>
<div id="contentBox">
<form id="dialogWindow" action="overview.html">
<h1>Schülerverwaltung</h1>
<input type="text" placeholder="Benutzername" minlength="4" pattern="[A-z0-9]+" required/>
<input type="password" placeholder="Passwort" minlength="8" required/>
<span class="buttonColumn">
<a class="button" href="ChangePassword.html">Passwort vergessen</a>
<input type="submit" class="button" value="Anmelden"/>
<!--
<a class="button" href="overview.html">Anmelden</a>-->
</span>
</form>
</div>
</body>
</html>