added css for login page

This commit is contained in:
2022-06-18 15:27:38 +02:00
parent 7a73c0182a
commit 7fcd483592
2 changed files with 139 additions and 6 deletions

View File

@@ -36,14 +36,25 @@
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/login.css">
<title>Punktesystem-KSP</title>
</head>
<body>
<form method="post">
<input id="text" type="text" name="user_name"><br><br>
<input id="text" type="password" name="password" autocomplete="off"><br><br>
<input id="button" type="submit" value="Login"><br><br>
</form>
<div class="center">
<h1>PUNKTESYSTEM-KSP</h1>
<form method="post">
<div class="txt_field">
<input id="user_name" type="text" name="user_name" required>
<span></span>
<label>Benutzername</label>
</div>
<div class="txt_field">
<input id="password" type="password" name="password" autocomplete="off" required>
<span></span>
<label>Passwort</label>
</div>
<input class="button" id="button" type="submit" value="Login"><br><br>
</form>
</div>
</body>
</html>