Improve design of login and management
This commit is contained in:
parent
e1c4b71f6d
commit
185668b27f
2 changed files with 29 additions and 2 deletions
|
@ -1,9 +1,36 @@
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title>Mitarbeiterlogin</title>
|
<title>Mitarbeiterlogin</title>
|
||||||
|
<style>
|
||||||
|
body {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
flex-direction: column;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
body>div {
|
||||||
|
width: 15em;
|
||||||
|
height: 1.5em;
|
||||||
|
font-size: 2em;
|
||||||
|
font-weight: bold;
|
||||||
|
border-bottom: 2px solid black;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
body>div, body>form {
|
||||||
|
margin-top: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
form>* {
|
||||||
|
font-size: 1.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div>Login für Mitarbeiter</div>
|
<div>Login für Mitarbeiter:</div>
|
||||||
<form method="post">
|
<form method="post">
|
||||||
<select name="employeeId">
|
<select name="employeeId">
|
||||||
% for employee in employees:
|
% for employee in employees:
|
||||||
|
|
|
@ -44,7 +44,7 @@
|
||||||
<body>
|
<body>
|
||||||
<script src="assets/js/ampel.js"></script>
|
<script src="assets/js/ampel.js"></script>
|
||||||
<div id="header">
|
<div id="header">
|
||||||
<div>Hallo {{employeeData[0]}} (Raum {{employeeData[1]}})</div>
|
<div>{{employeeData[0]}} (Raum {{employeeData[1]}})</div>
|
||||||
<form method="post" action="logout">
|
<form method="post" action="logout">
|
||||||
<button type="submit">Abmelden</button>
|
<button type="submit">Abmelden</button>
|
||||||
</form>
|
</form>
|
||||||
|
|
Loading…
Reference in a new issue