23 lines
813 B
HTML
23 lines
813 B
HTML
<!doctype html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>Login · 3D Project Manager</title>
|
|
<link rel="stylesheet" href="/style.css" />
|
|
</head>
|
|
<body>
|
|
<div class="login-wrap">
|
|
<form class="login-card" id="login-form" autocomplete="off">
|
|
<div class="login-title"><span class="wordmark-mark">◇</span> 3D Project Manager</div>
|
|
<label class="login-label" for="password">Passwort</label>
|
|
<input class="login-input" type="password" id="password" name="password" autofocus required />
|
|
<button class="btn login-submit" type="submit">Anmelden</button>
|
|
<div class="login-error" id="login-error"></div>
|
|
</form>
|
|
</div>
|
|
|
|
<script type="module" src="/login.js"></script>
|
|
</body>
|
|
</html>
|