Skip to content

Commit

Permalink
Update: Enhanced app functionalities (#196)
Browse files Browse the repository at this point in the history
  • Loading branch information
hoangsonww committed May 25, 2024
1 parent 365c204 commit b1fd3a1
Show file tree
Hide file tree
Showing 2 changed files with 83 additions and 78 deletions.
107 changes: 56 additions & 51 deletions MovieVerse-Frontend/html/search.html
Original file line number Diff line number Diff line change
Expand Up @@ -397,13 +397,60 @@ <h2 id="search-results-label">Search Results</h2>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>

<button id="chat-button" onclick="window.location.href='chat.html'" style="bottom: 300px; right: 10px; z-index: 1001" title="Chat with fellow MovieVerse users!">Chat</button>
<button id="settings-btn" onclick="window.location.href='settings.html'" style="position: fixed; bottom: 265px; right: 10px; z-index: 10012">Settings</button>
<button id="movie-of-the-day-btn" onclick="showMovieOfTheDay()" title="Get a recommended movie to watch for today!" style="bottom: 230px; right: 10px; z-index: 10012">Surprise Me!</button>
<button id="movie-match-btn3" onclick="window.location.href='movie-match.html'" title="Find a movie that matches your mood, genre, and time period!" style="bottom: 195px; right: 10px; z-index: 10012">Movie Match</button>
<button id="movie-timeline-btn" onclick="window.location.href='movie-timeline.html'" title="Explore movies through different eras!" style="bottom: 160px; right: 10px; z-index: 10012">Movie Timeline</button>
<button id="discussions-btn" onclick="window.location.href='chatbot.html'" style="bottom: 125px; right: 10px; z-index: 10012" title="Chat with our intelligent chatbot!">MovieVerse Chatbot</button>
<button id="trivia-btn" onclick="window.location.href='trivia.html'" style="bottom: 90px; right: 10px; z-index: 10012" title="Test your movie knowledge">MovieVerse Trivia</button>
<button id="chat-button" onclick="window.location.href='chat.html'" style="bottom: 335px; right: 10px; z-index: 1001" title="Chat with fellow MovieVerse users!">Chat</button>
<button id="settings-btn" onclick="window.location.href='settings.html'" style="position: fixed; bottom: 300px; right: 10px; z-index: 10012">Settings</button>
<button id="movie-of-the-day-btn" onclick="showMovieOfTheDay()" title="Get a recommended movie to watch for today!" style="bottom: 265px; right: 10px; z-index: 10012">Surprise Me!</button>
<button id="movie-match-btn3" onclick="window.location.href='movie-match.html'" title="Find a movie that matches your mood, genre, and time period!" style="bottom: 230px; right: 10px; z-index: 10012">Movie Match</button>
<button id="movie-timeline-btn" onclick="window.location.href='movie-timeline.html'" title="Explore movies through different eras!" style="bottom: 195px; right: 10px; z-index: 10012">Movie Timeline</button>
<button id="discussions-btn" onclick="window.location.href='chatbot.html'" style="bottom: 160px; right: 10px; z-index: 10012" title="Chat with our intelligent chatbot!">MovieVerse Chatbot</button>
<button id="trivia-btn" onclick="window.location.href='trivia.html'" style="bottom: 125px; right: 10px; z-index: 10012" title="Test your movie knowledge">MovieVerse Trivia</button>
<button id="back-to-top-btn" style="bottom: 90px; right: 10px; z-index: 10012" title="Back to top">Back to Top</button>

<footer>
<a href="../../index.html" style="cursor: pointer; text-decoration: none">
<p style="cursor: pointer; text-decoration: none">© 2024 The MovieVerse. All rights reserved.</p>
</a>
</footer>

<div id="mobile-bottom-bar" class="mobile-bottom-bar">
<a href="chat.html" class="bottom-bar-item">
<i class="fas fa-comments"></i>
<span>Chat</span>
</a>
<a href="settings.html" class="bottom-bar-item">
<i class="fas fa-cog"></i>
<span>Settings</span>
</a>
<a href="#" class="bottom-bar-item" onclick="showMovieOfTheDay()">
<i class="fas fa-surprise"></i>
<span>Surprise Me</span>
</a>
<a href="movie-match.html" class="bottom-bar-item">
<i class="fas fa-film"></i>
<span>Match</span>
</a>
<a href="movie-timeline.html" class="bottom-bar-item">
<i class="fas fa-clock"></i>
<span>Timeline</span>
</a>
<a href="chatbot.html" class="bottom-bar-item">
<i class="fas fa-robot"></i>
<span>Chatbot</span>
</a>
<a href="trivia.html" class="bottom-bar-item">
<i class="fas fa-question-circle"></i>
<span>Trivia</span>
</a>
<a href="#" class="bottom-bar-item">
<i class="fas fa-arrow-up"></i>
<span>Top</span>
</a>
</div>

<button id="menu-btn" style="position: fixed; bottom: 10px; right: 10px; z-index: 10012" title="Toggle Menu Buttons">
<i class="fas fa-ellipsis-h"></i><br>
<span>Menu</span>
</button>

<script>
function handleSignInOut() {
Expand Down Expand Up @@ -822,48 +869,6 @@ <h2 id="search-results-label">Search Results</h2>
});
</script>

<footer>
<a href="../../index.html" style="cursor: pointer; text-decoration: none">
<p style="cursor: pointer; text-decoration: none">© 2024 The MovieVerse. All rights reserved.</p>
</a>
</footer>

<div id="mobile-bottom-bar" class="mobile-bottom-bar">
<a href="chat.html" class="bottom-bar-item">
<i class="fas fa-comments"></i>
<span>Chat</span>
</a>
<a href="settings.html" class="bottom-bar-item">
<i class="fas fa-cog"></i>
<span>Settings</span>
</a>
<a href="#" class="bottom-bar-item" onclick="showMovieOfTheDay()">
<i class="fas fa-surprise"></i>
<span>Surprise Me</span>
</a>
<a href="movie-match.html" class="bottom-bar-item">
<i class="fas fa-film"></i>
<span>Match</span>
</a>
<a href="movie-timeline.html" class="bottom-bar-item">
<i class="fas fa-clock"></i>
<span>Timeline</span>
</a>
<a href="chatbot.html" class="bottom-bar-item">
<i class="fas fa-robot"></i>
<span>Chatbot</span>
</a>
<a href="trivia.html" class="bottom-bar-item">
<i class="fas fa-question-circle"></i>
<span>Trivia</span>
</a>
</div>

<button id="menu-btn" style="position: fixed; bottom: 10px; right: 10px; z-index: 10012" title="Toggle Menu Buttons">
<i class="fas fa-ellipsis-h"></i><br>
<span>Menu</span>
</button>

<script>
window.addEventListener('load', function() {
adjustAnchorHeights();
Expand Down Expand Up @@ -916,6 +921,7 @@ <h2 id="search-results-label">Search Results</h2>
'movie-timeline-btn',
'discussions-btn',
'trivia-btn',
'back-to-top-btn'
];

buttonIds.forEach((id, index) => {
Expand Down Expand Up @@ -950,6 +956,7 @@ <h2 id="search-results-label">Search Results</h2>
'movie-timeline-btn',
'discussions-btn',
'trivia-btn',
'back-to-top-btn'
];

buttonIds.forEach(id => {
Expand All @@ -961,7 +968,5 @@ <h2 id="search-results-label">Search Results</h2>
}
});
</script>

</body>

</html>
54 changes: 27 additions & 27 deletions sitemap.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,137 +2,137 @@
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://movie-verse.com/</loc>
<lastmod>2024-05-15</lastmod>
<lastmod>2024-05-25</lastmod>
<priority>1.00</priority>
</url>
<url>
<loc>https://movie-verse.com/MovieVerse-Frontend/html/about.html</loc>
<lastmod>2024-05-15</lastmod>
<lastmod>2024-05-25</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://movie-verse.com/MovieVerse-Frontend/html/favorites.html</loc>
<lastmod>2024-05-15</lastmod>
<lastmod>2024-05-25</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://movie-verse.com/MovieVerse-Frontend/html/movie-match.html</loc>
<lastmod>2024-05-15</lastmod>
<lastmod>2024-05-25</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://movie-verse.com/MovieVerse-Frontend/html/movie-timeline.html</loc>
<lastmod>2024-05-15</lastmod>
<lastmod>2024-05-25</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://movie-verse.com/MovieVerse-Frontend/html/notifications.html</loc>
<lastmod>2024-05-15</lastmod>
<lastmod>2024-05-25</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://movie-verse.com/MovieVerse-Frontend/html/chatbot.html</loc>
<lastmod>2024-05-15</lastmod>
<lastmod>2024-05-25</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://movie-verse.com/MovieVerse-Frontend/html/trivia.html</loc>
<lastmod>2024-05-15</lastmod>
<lastmod>2024-05-25</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://movie-verse.com/MovieVerse-Frontend/html/settings.html</loc>
<lastmod>2024-05-15</lastmod>
<lastmod>2024-05-25</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://movie-verse.com/MovieVerse-Frontend/html/chat.html</loc>
<lastmod>2024-05-15</lastmod>
<lastmod>2024-05-25</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://movie-verse.com/MovieVerse-Frontend/html/movie-details.html</loc>
<lastmod>2024-05-15</lastmod>
<lastmod>2024-05-25</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://movie-verse.com/MovieVerse-Frontend/html/director-details.html</loc>
<lastmod>2024-05-15</lastmod>
<lastmod>2024-05-25</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://movie-verse.com/MovieVerse-Frontend/html/actor-details.html</loc>
<lastmod>2024-05-15</lastmod>
<lastmod>2024-05-25</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://movie-verse.com/MovieVerse-Frontend/html/company-details.html</loc>
<lastmod>2024-05-15</lastmod>
<lastmod>2024-05-25</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://movie-verse.com/MovieVerse-Frontend/html/sign-in.html</loc>
<lastmod>2024-05-15</lastmod>
<lastmod>2024-05-25</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://movie-verse.com/MovieVerse-Frontend/html/create-account.html</loc>
<lastmod>2024-05-15</lastmod>
<lastmod>2024-05-25</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://movie-verse.com/MovieVerse-Frontend/html/reset-password.html</loc>
<lastmod>2024-05-15</lastmod>
<lastmod>2024-05-25</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://movie-verse.com/MovieVerse-Frontend/html/privacy-policy.html</loc>
<lastmod>2024-05-15</lastmod>
<lastmod>2024-05-25</lastmod>
<priority>0.60</priority>
</url>
<url>
<loc>https://movie-verse.com/MovieVerse-Frontend/html/terms-of-service.html</loc>
<lastmod>2024-05-15</lastmod>
<lastmod>2024-05-25</lastmod>
<priority>0.60</priority>
</url>
<url>
<loc>https://movie-verse.com/MovieVerse-Frontend/html/search.html</loc>
<lastmod>2024-05-15</lastmod>
<lastmod>2024-05-25</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://movie-verse.com/MovieVerse-Frontend/html/analytics.html</loc>
<lastmod>2024-05-15</lastmod>
<lastmod>2024-05-25</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://movie-verse.com/MovieVerse-Frontend/html/feedback.html</loc>
<lastmod>2024-05-15</lastmod>
<lastmod>2024-05-25</lastmod>
<priority>0.60</priority>
</url>
<url>
<loc>https://movie-verse.com/MovieVerse-Frontend/html/support.html</loc>
<lastmod>2024-05-15</lastmod>
<lastmod>2024-05-25</lastmod>
<priority>0.60</priority>
</url>
<url>
<loc>https://movie-verse.com/MovieVerse-Frontend/html/inception.html</loc>
<lastmod>2024-05-15</lastmod>
<lastmod>2024-05-25</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://movie-verse.com/MovieVerse-Frontend/html/user-profile.html</loc>
<lastmod>2024-05-15</lastmod>
<lastmod>2024-05-25</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://movie-verse.com/MovieVerse-Frontend/html/leonardo-dicaprio.html</loc>
<lastmod>2024-05-15</lastmod>
<lastmod>2024-05-25</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://movie-verse.com/MovieVerse-Frontend/html/christopher-nolan.html</loc>
<lastmod>2024-05-15</lastmod>
<lastmod>2024-05-25</lastmod>
<priority>0.80</priority>
</url>
</urlset>

0 comments on commit b1fd3a1

Please sign in to comment.