Files
Link-Log/frontend/templates/login.html
T
2026-08-24 14:30:30 +02:00

35 lines
1.0 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Sign in - LinkLog</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="/static/style.css" />
</head>
<body>
<header class="site-header">
<div class="container">
<h1>Sign in</h1>
<p>Access your LinkLog settings</p>
</div>
</header>
<main class="container">
<section class="link-item settings-panel">
<form id="login-form">
<label>
Username
<input id="username" name="username" type="text" autocomplete="username" required />
</label>
<label>
Password
<input id="password" name="password" type="password" autocomplete="current-password" required />
</label>
<button type="submit">Sign in</button>
<p id="login-status" class="status" role="status"></p>
</form>
</section>
</main>
<script src="/static/login.js"></script>
</body>
</html>