Skip to content

Commit b1fd3a1

Browse files
committed
Update: Enhanced app functionalities (#196)
1 parent 365c204 commit b1fd3a1

File tree

2 files changed

+83
-78
lines changed

2 files changed

+83
-78
lines changed

MovieVerse-Frontend/html/search.html

+56-51
Original file line numberDiff line numberDiff line change
@@ -397,13 +397,60 @@ <h2 id="search-results-label">Search Results</h2>
397397
(adsbygoogle = window.adsbygoogle || []).push({});
398398
</script>
399399

400-
<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>
401-
<button id="settings-btn" onclick="window.location.href='settings.html'" style="position: fixed; bottom: 265px; right: 10px; z-index: 10012">Settings</button>
402-
<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>
403-
<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>
404-
<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>
405-
<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>
406-
<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>
400+
<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>
401+
<button id="settings-btn" onclick="window.location.href='settings.html'" style="position: fixed; bottom: 300px; right: 10px; z-index: 10012">Settings</button>
402+
<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>
403+
<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>
404+
<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>
405+
<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>
406+
<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>
407+
<button id="back-to-top-btn" style="bottom: 90px; right: 10px; z-index: 10012" title="Back to top">Back to Top</button>
408+
409+
<footer>
410+
<a href="../../index.html" style="cursor: pointer; text-decoration: none">
411+
<p style="cursor: pointer; text-decoration: none">© 2024 The MovieVerse. All rights reserved.</p>
412+
</a>
413+
</footer>
414+
415+
<div id="mobile-bottom-bar" class="mobile-bottom-bar">
416+
<a href="chat.html" class="bottom-bar-item">
417+
<i class="fas fa-comments"></i>
418+
<span>Chat</span>
419+
</a>
420+
<a href="settings.html" class="bottom-bar-item">
421+
<i class="fas fa-cog"></i>
422+
<span>Settings</span>
423+
</a>
424+
<a href="#" class="bottom-bar-item" onclick="showMovieOfTheDay()">
425+
<i class="fas fa-surprise"></i>
426+
<span>Surprise Me</span>
427+
</a>
428+
<a href="movie-match.html" class="bottom-bar-item">
429+
<i class="fas fa-film"></i>
430+
<span>Match</span>
431+
</a>
432+
<a href="movie-timeline.html" class="bottom-bar-item">
433+
<i class="fas fa-clock"></i>
434+
<span>Timeline</span>
435+
</a>
436+
<a href="chatbot.html" class="bottom-bar-item">
437+
<i class="fas fa-robot"></i>
438+
<span>Chatbot</span>
439+
</a>
440+
<a href="trivia.html" class="bottom-bar-item">
441+
<i class="fas fa-question-circle"></i>
442+
<span>Trivia</span>
443+
</a>
444+
<a href="#" class="bottom-bar-item">
445+
<i class="fas fa-arrow-up"></i>
446+
<span>Top</span>
447+
</a>
448+
</div>
449+
450+
<button id="menu-btn" style="position: fixed; bottom: 10px; right: 10px; z-index: 10012" title="Toggle Menu Buttons">
451+
<i class="fas fa-ellipsis-h"></i><br>
452+
<span>Menu</span>
453+
</button>
407454

408455
<script>
409456
function handleSignInOut() {
@@ -822,48 +869,6 @@ <h2 id="search-results-label">Search Results</h2>
822869
});
823870
</script>
824871

825-
<footer>
826-
<a href="../../index.html" style="cursor: pointer; text-decoration: none">
827-
<p style="cursor: pointer; text-decoration: none">© 2024 The MovieVerse. All rights reserved.</p>
828-
</a>
829-
</footer>
830-
831-
<div id="mobile-bottom-bar" class="mobile-bottom-bar">
832-
<a href="chat.html" class="bottom-bar-item">
833-
<i class="fas fa-comments"></i>
834-
<span>Chat</span>
835-
</a>
836-
<a href="settings.html" class="bottom-bar-item">
837-
<i class="fas fa-cog"></i>
838-
<span>Settings</span>
839-
</a>
840-
<a href="#" class="bottom-bar-item" onclick="showMovieOfTheDay()">
841-
<i class="fas fa-surprise"></i>
842-
<span>Surprise Me</span>
843-
</a>
844-
<a href="movie-match.html" class="bottom-bar-item">
845-
<i class="fas fa-film"></i>
846-
<span>Match</span>
847-
</a>
848-
<a href="movie-timeline.html" class="bottom-bar-item">
849-
<i class="fas fa-clock"></i>
850-
<span>Timeline</span>
851-
</a>
852-
<a href="chatbot.html" class="bottom-bar-item">
853-
<i class="fas fa-robot"></i>
854-
<span>Chatbot</span>
855-
</a>
856-
<a href="trivia.html" class="bottom-bar-item">
857-
<i class="fas fa-question-circle"></i>
858-
<span>Trivia</span>
859-
</a>
860-
</div>
861-
862-
<button id="menu-btn" style="position: fixed; bottom: 10px; right: 10px; z-index: 10012" title="Toggle Menu Buttons">
863-
<i class="fas fa-ellipsis-h"></i><br>
864-
<span>Menu</span>
865-
</button>
866-
867872
<script>
868873
window.addEventListener('load', function() {
869874
adjustAnchorHeights();
@@ -916,6 +921,7 @@ <h2 id="search-results-label">Search Results</h2>
916921
'movie-timeline-btn',
917922
'discussions-btn',
918923
'trivia-btn',
924+
'back-to-top-btn'
919925
];
920926

921927
buttonIds.forEach((id, index) => {
@@ -950,6 +956,7 @@ <h2 id="search-results-label">Search Results</h2>
950956
'movie-timeline-btn',
951957
'discussions-btn',
952958
'trivia-btn',
959+
'back-to-top-btn'
953960
];
954961

955962
buttonIds.forEach(id => {
@@ -961,7 +968,5 @@ <h2 id="search-results-label">Search Results</h2>
961968
}
962969
});
963970
</script>
964-
965971
</body>
966-
967972
</html>

sitemap.xml

+27-27
Original file line numberDiff line numberDiff line change
@@ -2,137 +2,137 @@
22
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
33
<url>
44
<loc>https://movie-verse.com/</loc>
5-
<lastmod>2024-05-15</lastmod>
5+
<lastmod>2024-05-25</lastmod>
66
<priority>1.00</priority>
77
</url>
88
<url>
99
<loc>https://movie-verse.com/MovieVerse-Frontend/html/about.html</loc>
10-
<lastmod>2024-05-15</lastmod>
10+
<lastmod>2024-05-25</lastmod>
1111
<priority>0.80</priority>
1212
</url>
1313
<url>
1414
<loc>https://movie-verse.com/MovieVerse-Frontend/html/favorites.html</loc>
15-
<lastmod>2024-05-15</lastmod>
15+
<lastmod>2024-05-25</lastmod>
1616
<priority>0.80</priority>
1717
</url>
1818
<url>
1919
<loc>https://movie-verse.com/MovieVerse-Frontend/html/movie-match.html</loc>
20-
<lastmod>2024-05-15</lastmod>
20+
<lastmod>2024-05-25</lastmod>
2121
<priority>0.80</priority>
2222
</url>
2323
<url>
2424
<loc>https://movie-verse.com/MovieVerse-Frontend/html/movie-timeline.html</loc>
25-
<lastmod>2024-05-15</lastmod>
25+
<lastmod>2024-05-25</lastmod>
2626
<priority>0.80</priority>
2727
</url>
2828
<url>
2929
<loc>https://movie-verse.com/MovieVerse-Frontend/html/notifications.html</loc>
30-
<lastmod>2024-05-15</lastmod>
30+
<lastmod>2024-05-25</lastmod>
3131
<priority>0.80</priority>
3232
</url>
3333
<url>
3434
<loc>https://movie-verse.com/MovieVerse-Frontend/html/chatbot.html</loc>
35-
<lastmod>2024-05-15</lastmod>
35+
<lastmod>2024-05-25</lastmod>
3636
<priority>0.80</priority>
3737
</url>
3838
<url>
3939
<loc>https://movie-verse.com/MovieVerse-Frontend/html/trivia.html</loc>
40-
<lastmod>2024-05-15</lastmod>
40+
<lastmod>2024-05-25</lastmod>
4141
<priority>0.80</priority>
4242
</url>
4343
<url>
4444
<loc>https://movie-verse.com/MovieVerse-Frontend/html/settings.html</loc>
45-
<lastmod>2024-05-15</lastmod>
45+
<lastmod>2024-05-25</lastmod>
4646
<priority>0.80</priority>
4747
</url>
4848
<url>
4949
<loc>https://movie-verse.com/MovieVerse-Frontend/html/chat.html</loc>
50-
<lastmod>2024-05-15</lastmod>
50+
<lastmod>2024-05-25</lastmod>
5151
<priority>0.80</priority>
5252
</url>
5353
<url>
5454
<loc>https://movie-verse.com/MovieVerse-Frontend/html/movie-details.html</loc>
55-
<lastmod>2024-05-15</lastmod>
55+
<lastmod>2024-05-25</lastmod>
5656
<priority>0.80</priority>
5757
</url>
5858
<url>
5959
<loc>https://movie-verse.com/MovieVerse-Frontend/html/director-details.html</loc>
60-
<lastmod>2024-05-15</lastmod>
60+
<lastmod>2024-05-25</lastmod>
6161
<priority>0.80</priority>
6262
</url>
6363
<url>
6464
<loc>https://movie-verse.com/MovieVerse-Frontend/html/actor-details.html</loc>
65-
<lastmod>2024-05-15</lastmod>
65+
<lastmod>2024-05-25</lastmod>
6666
<priority>0.80</priority>
6767
</url>
6868
<url>
6969
<loc>https://movie-verse.com/MovieVerse-Frontend/html/company-details.html</loc>
70-
<lastmod>2024-05-15</lastmod>
70+
<lastmod>2024-05-25</lastmod>
7171
<priority>0.80</priority>
7272
</url>
7373
<url>
7474
<loc>https://movie-verse.com/MovieVerse-Frontend/html/sign-in.html</loc>
75-
<lastmod>2024-05-15</lastmod>
75+
<lastmod>2024-05-25</lastmod>
7676
<priority>0.80</priority>
7777
</url>
7878
<url>
7979
<loc>https://movie-verse.com/MovieVerse-Frontend/html/create-account.html</loc>
80-
<lastmod>2024-05-15</lastmod>
80+
<lastmod>2024-05-25</lastmod>
8181
<priority>0.80</priority>
8282
</url>
8383
<url>
8484
<loc>https://movie-verse.com/MovieVerse-Frontend/html/reset-password.html</loc>
85-
<lastmod>2024-05-15</lastmod>
85+
<lastmod>2024-05-25</lastmod>
8686
<priority>0.80</priority>
8787
</url>
8888
<url>
8989
<loc>https://movie-verse.com/MovieVerse-Frontend/html/privacy-policy.html</loc>
90-
<lastmod>2024-05-15</lastmod>
90+
<lastmod>2024-05-25</lastmod>
9191
<priority>0.60</priority>
9292
</url>
9393
<url>
9494
<loc>https://movie-verse.com/MovieVerse-Frontend/html/terms-of-service.html</loc>
95-
<lastmod>2024-05-15</lastmod>
95+
<lastmod>2024-05-25</lastmod>
9696
<priority>0.60</priority>
9797
</url>
9898
<url>
9999
<loc>https://movie-verse.com/MovieVerse-Frontend/html/search.html</loc>
100-
<lastmod>2024-05-15</lastmod>
100+
<lastmod>2024-05-25</lastmod>
101101
<priority>0.80</priority>
102102
</url>
103103
<url>
104104
<loc>https://movie-verse.com/MovieVerse-Frontend/html/analytics.html</loc>
105-
<lastmod>2024-05-15</lastmod>
105+
<lastmod>2024-05-25</lastmod>
106106
<priority>0.80</priority>
107107
</url>
108108
<url>
109109
<loc>https://movie-verse.com/MovieVerse-Frontend/html/feedback.html</loc>
110-
<lastmod>2024-05-15</lastmod>
110+
<lastmod>2024-05-25</lastmod>
111111
<priority>0.60</priority>
112112
</url>
113113
<url>
114114
<loc>https://movie-verse.com/MovieVerse-Frontend/html/support.html</loc>
115-
<lastmod>2024-05-15</lastmod>
115+
<lastmod>2024-05-25</lastmod>
116116
<priority>0.60</priority>
117117
</url>
118118
<url>
119119
<loc>https://movie-verse.com/MovieVerse-Frontend/html/inception.html</loc>
120-
<lastmod>2024-05-15</lastmod>
120+
<lastmod>2024-05-25</lastmod>
121121
<priority>0.80</priority>
122122
</url>
123123
<url>
124124
<loc>https://movie-verse.com/MovieVerse-Frontend/html/user-profile.html</loc>
125-
<lastmod>2024-05-15</lastmod>
125+
<lastmod>2024-05-25</lastmod>
126126
<priority>0.80</priority>
127127
</url>
128128
<url>
129129
<loc>https://movie-verse.com/MovieVerse-Frontend/html/leonardo-dicaprio.html</loc>
130-
<lastmod>2024-05-15</lastmod>
130+
<lastmod>2024-05-25</lastmod>
131131
<priority>0.80</priority>
132132
</url>
133133
<url>
134134
<loc>https://movie-verse.com/MovieVerse-Frontend/html/christopher-nolan.html</loc>
135-
<lastmod>2024-05-15</lastmod>
135+
<lastmod>2024-05-25</lastmod>
136136
<priority>0.80</priority>
137137
</url>
138138
</urlset>

0 commit comments

Comments
 (0)