UI: User Login, Mitarbeiterübersichts Page
This commit is contained in:
parent
621599e138
commit
88d3bb8cc4
13 changed files with 300 additions and 3 deletions
26
src/app/components/login-view/login-view.component.html
Normal file
26
src/app/components/login-view/login-view.component.html
Normal file
|
@ -0,0 +1,26 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Hi-Tec GmbH Login</title>
|
||||
<link rel="stylesheet" href="login-view.component.css">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400&display=swap" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<h1>Hi-Tec GmbH</h1>
|
||||
<img src="img.png" alt="Logout Icon" class="logo-image">
|
||||
|
||||
<form>
|
||||
<label for="username">Username</label>
|
||||
<input type="text" id="username" name="username"><br>
|
||||
|
||||
<label for="password">Password</label>
|
||||
<input type="password" id="password" name="password"><br><br>
|
||||
|
||||
<button type="submit">Anmelden</button>
|
||||
</form>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Reference in a new issue