56 lines
1.7 KiB
HTML
56 lines
1.7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>LinkDing - Your Link Collection</title>
|
|
<link rel="stylesheet" href="styles.css">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<header>
|
|
<h1>🔗 LinkDing</h1>
|
|
<p class="subtitle">Collect and organize your favorite links</p>
|
|
</header>
|
|
|
|
<div class="input-section">
|
|
<form id="linkForm" class="link-form">
|
|
<div class="input-group">
|
|
<input
|
|
type="url"
|
|
id="linkInput"
|
|
placeholder="Paste a link here..."
|
|
required
|
|
autocomplete="off"
|
|
>
|
|
<button type="submit" id="addButton" class="btn-primary">
|
|
<span class="btn-text">Add Link</span>
|
|
<span class="btn-loader" style="display: none;">⏳</span>
|
|
</button>
|
|
</div>
|
|
</form>
|
|
|
|
<div class="search-section">
|
|
<input
|
|
type="text"
|
|
id="searchInput"
|
|
placeholder="🔍 Search links by title, description, or URL..."
|
|
autocomplete="off"
|
|
>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="message" class="message" style="display: none;"></div>
|
|
|
|
<div id="linksContainer" class="links-container">
|
|
<div class="empty-state">
|
|
<p>No links yet. Add your first link to get started!</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="app.js"></script>
|
|
</body>
|
|
</html>
|
|
|