37 lines
1.2 KiB
HTML
37 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html class="light">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Bookmarks</title>
|
|
<link rel="stylesheet" href="sovereign://bookmarks.css">
|
|
</head>
|
|
<body>
|
|
<h1>Bookmarks</h1>
|
|
|
|
<p id="readonly-note" class="note" style="display:none">
|
|
Read-only mode — sign in to add, edit, or delete bookmarks.
|
|
Showing cached bookmarks from the local database.
|
|
</p>
|
|
|
|
<div id="add-form" style="display:none">
|
|
<h2>Add Bookmark</h2>
|
|
<div class="form">
|
|
<input type="text" id="bm-url" placeholder="URL" size="40">
|
|
<input type="text" id="bm-title" placeholder="Title" size="25">
|
|
<input type="text" id="bm-path" placeholder="Folder path (e.g. Work/Projects)" size="25">
|
|
<button class="btn" onclick="addBookmark()">Add</button>
|
|
</div>
|
|
<div class="form">
|
|
<input type="text" id="new-path" placeholder="New folder path (e.g. Work/Projects/Secret)" size="35">
|
|
<button class="btn" onclick="createDir()">Create Folder</button>
|
|
</div>
|
|
</div>
|
|
|
|
<h2>Bookmarks</h2>
|
|
<div id="bm-tree"></div>
|
|
|
|
<script src="sovereign://bookmarks.js"></script>
|
|
</body>
|
|
</html>
|