28 lines
501 B
HTML
Executable File
28 lines
501 B
HTML
Executable File
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Service Portal</title>
|
|
<link rel="stylesheet" href="style.css" />
|
|
</head>
|
|
<body>
|
|
|
|
<header id="header">
|
|
<div class="logo">schooltech</div>
|
|
<nav id="services">
|
|
<!-- dynamisch -->
|
|
</nav>
|
|
<div class="user">User</div>
|
|
</header>
|
|
|
|
<main>
|
|
<h1>Willkommen</h1>
|
|
<p>Bitte wählen Sie einen Service.</p>
|
|
|
|
<div id="service-grid"></div>
|
|
</main>
|
|
|
|
<script src="app.js"></script>
|
|
</body>
|
|
</html>
|