56 lines
2.0 KiB
Plaintext
56 lines
2.0 KiB
Plaintext
<!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>
|
|
<link rel="stylesheet" href="/static/css/style.css">
|
|
</head>
|
|
<body class="with-sidebar">
|
|
<div class="top-bar">
|
|
<div class="top-bar-buttons">
|
|
<button class="add-feed-button" id="addFeedButton">Add Feed</button>
|
|
</div>
|
|
<h1 class="top-bar-title">RSS Reader</h1>
|
|
<button class="logout-button" id="logoutButton">Logout</button>
|
|
</div>
|
|
|
|
<!-- 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">
|
|
<div class="form-group">
|
|
<label for="feedUrl">Feed URL</label>
|
|
<input type="url" id="feedUrl" name="url" required
|
|
placeholder="https://example.com/feed.xml">
|
|
</div>
|
|
<div class="error-message" id="feedErrorMessage" style="display: none; color: red; margin-bottom: 10px;"></div>
|
|
<div class="loading-message" id="loadingMessage" style="display: none; color: #666; margin-bottom: 10px; text-align: center;">
|
|
<div class="spinner"></div>
|
|
<div>Loading feed information...</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn-secondary" id="cancelAddFeed">Cancel</button>
|
|
<button type="button" class="btn-primary" id="confirmAddFeed">Add Feed</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="sidebar">
|
|
<h2>Feeds</h2>
|
|
<div id="feedList">
|
|
</div>
|
|
</div>
|
|
<div class="main-content">
|
|
</div>
|
|
|
|
<script src="/static/js/app.js"></script>
|
|
</body>
|
|
</html>
|