78 lines
2.3 KiB
HTML
78 lines
2.3 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>LinkSync</title>
|
|
<link rel="stylesheet" href="popup.css">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>LinkSync</h1>
|
|
</header>
|
|
|
|
<section id="sync-status">
|
|
<span id="sync-indicator"></span>
|
|
<span id="last-sync"></span>
|
|
</section>
|
|
|
|
<!-- Add/Edit Form -->
|
|
<section id="bookmark-form">
|
|
<h2>Add Bookmark</h2>
|
|
<form id="bookmark-form">
|
|
<div class="form-group">
|
|
<label for="url">URL:</label>
|
|
<input type="url" id="url" placeholder="https://example.com" required>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="title">Title:</label>
|
|
<input type="text" id="title" placeholder="Page title">
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="description">Description:</label>
|
|
<textarea id="description" rows="2"></textarea>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="notes">Notes:</label>
|
|
<textarea id="notes" rows="2"></textarea>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="tags">Tags:</label>
|
|
<input type="text" id="tags" placeholder="work, personal, dev (comma-separated)">
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="folder">Folder:</label>
|
|
<input type="text" id="folder" placeholder="path/to/folder">
|
|
</div>
|
|
|
|
<button type="submit" id="submit">Add Bookmark</button>
|
|
</form>
|
|
</section>
|
|
|
|
<!-- Bookmark List -->
|
|
<section id="bookmark-list">
|
|
<h2>Bookmarks</h2>
|
|
<div id="search-filter">
|
|
<input type="text" id="search" placeholder="Search bookmarks...">
|
|
</div>
|
|
<div id="bookmarks-container"></div>
|
|
</section>
|
|
|
|
<!-- Collections Panel -->
|
|
<section id="collections-panel">
|
|
<h2>Collections</h2>
|
|
<div id="collections-list"></div>
|
|
</section>
|
|
|
|
<footer>
|
|
<button id="sync-btn">Sync Now</button>
|
|
<button id="settings-btn">Settings</button>
|
|
</footer>
|
|
|
|
<script src="popup.js"></script>
|
|
</body>
|
|
</html> |