55 lines
2.1 KiB
HTML
55 lines
2.1 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">
|
|
<div class="header-row">
|
|
<div>
|
|
<h1>Sign in</h1>
|
|
<p>Access your LinkLog settings</p>
|
|
</div>
|
|
<div class="header-actions">
|
|
<button class="menu-toggle" type="button" aria-expanded="false" aria-controls="auth-menu">Menu</button>
|
|
<nav id="auth-menu" class="auth-menu hidden" aria-label="Account menu">
|
|
<a id="auth-home-link" href="/">Home</a>
|
|
<a id="auth-login-button" href="/login">Sign in</a>
|
|
<a id="auth-profile-link" class="hidden" href="/profile">Profile</a>
|
|
<a id="auth-labels-link" class="hidden" href="/labels">Labels</a>
|
|
<a id="auth-admin-link" class="hidden" href="/admin">Admin</a>
|
|
<div id="auth-session" class="auth-session hidden">
|
|
<a id="auth-username" class="user-name" href="/"></a>
|
|
</div>
|
|
<button id="logout-button" class="logout-button hidden" type="button">Sign out</button>
|
|
</nav>
|
|
</div>
|
|
</div>
|
|
</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/auth-header.js?v=3"></script>
|
|
<script src="/static/logout.js?v=3"></script>
|
|
<script src="/static/login.js"></script>
|
|
</body>
|
|
</html>
|