52 lines
1.6 KiB
HTML
52 lines
1.6 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>LinkLog</title>
|
|
<link rel="stylesheet" href="popup.css" />
|
|
</head>
|
|
<body>
|
|
<main class="popup-shell">
|
|
<header>
|
|
<img class="extension-logo" src="logo.svg" alt="LinkLog" />
|
|
<a id="feed-link" class="feed-link hidden" href="/" target="_blank" rel="noopener noreferrer">LinkLog</a>
|
|
</header>
|
|
|
|
<div id="status" class="status hidden" aria-live="polite"></div>
|
|
|
|
<form id="link-form">
|
|
<label>
|
|
Title
|
|
<input id="title" name="title" type="text" />
|
|
</label>
|
|
|
|
<label>
|
|
URL
|
|
<input id="url" name="url" type="url" />
|
|
</label>
|
|
|
|
<label>
|
|
Comment
|
|
<textarea id="comment" name="comment" rows="3" placeholder="Your comment"></textarea>
|
|
</label>
|
|
|
|
<fieldset>
|
|
<legend>Tags</legend>
|
|
<div id="existing-tags" class="tag-options">Loading tags...</div>
|
|
<input id="new-tags" type="text" pattern="#[^, ]+(,\s*#[^, ]+)*" placeholder="#new-tag, #another-tag" />
|
|
</fieldset>
|
|
|
|
<div class="actions">
|
|
<button type="submit" id="submit-link">Save link</button>
|
|
<button type="button" id="open-settings" class="secondary">Settings</button>
|
|
</div>
|
|
</form>
|
|
</main>
|
|
<footer class="extension-footer">Copyright © 2026 Olaf Kolkman · <a href="https://git.kolkman.org/olaf/Link-Log">Repository</a></footer>
|
|
|
|
<script src="popup.js"></script>
|
|
</body>
|
|
</html>
|