35 lines
802 B
HTML
Executable File
35 lines
802 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"></nav>
|
|
<div class="user">
|
|
<button id="login-btn">Login</button>
|
|
</div>
|
|
</header>
|
|
|
|
<main>
|
|
<!-- iFrame für Services -->
|
|
<iframe id="service-frame" style="display:none;"></iframe>
|
|
|
|
<!-- Login Modal -->
|
|
<div id="login-modal" style="display:none;">
|
|
<label>User: <input type="text" id="username"/></label>
|
|
<label>Pass: <input type="password" id="password"/></label>
|
|
<button id="login-submit">Login</button>
|
|
<div id="login-msg"></div>
|
|
</div>
|
|
</main>
|
|
|
|
|
|
<script src="app.js"></script>
|
|
</body>
|
|
</html>
|