53 lines
2.4 KiB
HTML
53 lines
2.4 KiB
HTML
<!DOCTYPE html>
|
|
<!-- Copyright © 2026 Olaf Kolkman -->
|
|
<!-- SPDX-License-Identifier: GPL-3.0-or-later -->
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Labels - 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>
|
|
<img class="site-logo" src="/static/logo.svg" alt="LinkLog" />
|
|
<h1>Labels</h1>
|
|
<p>Manage your link labels</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-about-link" href="/about">About</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">
|
|
<p id="label-auth-notice" class="auth-notice hidden">Sign in to manage your labels. <a href="/login">Sign in</a></p>
|
|
<section id="label-controls" class="link-item settings-panel hidden">
|
|
<form id="label-form">
|
|
<label>Label <input id="label-name" name="name" type="text" placeholder="#Example" required /></label>
|
|
<button type="submit">Add label</button>
|
|
<p id="label-status" class="status" role="status"></p>
|
|
</form>
|
|
<div id="label-list" class="plugin-list"></div>
|
|
</section>
|
|
</main>
|
|
<footer class="site-footer">Copyright © 2026 Olaf Kolkman · <a href="https://git.kolkman.org/olaf/Link-Log">git.kolkman.org/LinkLog</a></footer>
|
|
<script src="/static/auth-header.js?v=3"></script>
|
|
<script src="/static/logout.js?v=3"></script>
|
|
<script src="/static/labels.js?v=1"></script>
|
|
</body>
|
|
</html>
|