rss-reader/templates/index.html.tera

61 lines
2.5 KiB
Plaintext
Raw Normal View History

2025-01-31 20:18:24 -08:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>RSS Reader</title>
2025-02-01 00:39:16 -08:00
<link rel="stylesheet" href="/static/css/style.css">
2025-01-31 20:18:24 -08:00
</head>
2025-02-01 20:04:21 -08:00
<body class="with-sidebar">
2025-02-01 23:01:33 -08:00
<div class="top-bar">
2025-02-02 01:23:21 -08:00
<div class="top-bar-buttons">
<button class="add-feed-button" id="addFeedButton">Add Feed</button>
</div>
2025-02-01 23:01:33 -08:00
<button class="logout-button" id="logoutButton">Logout</button>
</div>
2025-02-02 01:23:21 -08:00
<!-- Add Feed Modal -->
<div class="modal" id="addFeedModal">
<div class="modal-content">
<div class="modal-header">
<h2>Add RSS Feed</h2>
</div>
<div class="modal-body">
<form id="addFeedForm">
2025-02-02 02:11:13 -08:00
<div class="form-group">
<label for="feedName">Feed Name</label>
<input type="text" id="feedName" name="name" required
placeholder="My Blog Feed">
</div>
2025-02-02 01:23:21 -08:00
<div class="form-group">
<label for="feedUrl">Feed URL</label>
2025-02-02 02:11:13 -08:00
<input type="url" id="feedUrl" name="url" required
2025-02-02 01:23:21 -08:00
placeholder="https://example.com/feed.xml">
</div>
2025-02-02 02:11:13 -08:00
<div class="error-message" id="feedErrorMessage" style="display: none; color: red; margin-bottom: 10px;"></div>
2025-02-02 01:23:21 -08:00
</form>
</div>
<div class="modal-footer">
<button type="button" class="btn-secondary" id="cancelAddFeed">Cancel</button>
<button type="button" class="btn-primary" id="confirmAddFeed">OK</button>
</div>
</div>
</div>
2025-01-31 20:18:24 -08:00
<div class="sidebar">
<h2>Navigation</h2>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/message">Message</a></li>
</ul>
</div>
<div class="main-content">
<h1>Welcome to RSS Reader</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
<p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
</div>
2025-02-01 23:01:33 -08:00
2025-02-02 01:23:21 -08:00
<script src="/static/js/app.js"></script>
2025-01-31 20:18:24 -08:00
</body>
2025-02-01 16:53:58 -08:00
</html>