-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
89 lines (76 loc) · 1.77 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!doctype html>
<html lang="de">
<head>
<meta charset="UTF-8" />
<title>Policy-Web</title>
<style type="text/css">
body,
html {
width: 100%;
height: 100%;
margin: 0;
padding: 0
}
.flex-container {
display: flex;
flex-direction: column;
height: 80%;
width: 99%;
}
body {
font-family: sans-serif;
}
fieldset {
background-color: AliceBlue;
border: 2px solid steelblue;
}
.small {
font-size: small;
}
#links {
float: left;
}
#rechts {
float: right;
}
#unten {
clear: both
}
</style>
<link rel="icon" type="image/vnd.microsoft.icon" href="resources/images/policyweb.ico">
</head>
<body onload="document.getElementsByName('email')[0].focus();">
<div id="links">
<h1>Policy-Web</h1>
</div>
<form action="backend/login" method="post" id="rechts">
<fieldset>
<legend class="small">Anmelden</legend>
<input name="app" type="hidden" value="../app.html" />
<label for="email">Email:
<input id=txtf_email name="email" type="text" size="30" /></label>
<label for="pass">Kennwort:
<input id=txtf_password name="pass" type="password" size="15" /></label>
<input id=btn_login type="submit" value="Login" />
<p>
<div id="rechts" class="small">
Neues <a href="passwd.html">Kennwort anfordern</a></div>
<div class="small">
Für Dataport Mitarbeiter<br>
<a href="ldap-login.html">Anmeldung über Verzeichnisdienst</a>
</div>
</fieldset>
</form>
<p id="unten">
Hier geht es zur
<a href="/pwdoku/index.html">
Dokumentation
</a>.
</p>
<p>
Lesen Sie unten die Neuigkeiten oder <a href="/pwdoku/neuigkeiten/index.html">auf der entsprechenden Seite der
Dokumentation</a>.
</p>
<iframe src="/pwdoku/neuigkeiten/index.html" class="flex-container"></iframe>
</body>
</html>