From 09251b6e485944b053a84e7502f069382416cdbc Mon Sep 17 00:00:00 2001 From: Son Nguyen Hoang Date: Sat, 2 Mar 2024 20:25:03 -0500 Subject: [PATCH 1/3] Fix: Enhanced project README (#61) --- .github/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/README.md b/.github/README.md index ea19ddef..102448d2 100644 --- a/.github/README.md +++ b/.github/README.md @@ -81,7 +81,7 @@ The MovieVerse is a full-stack application with a robust backend and a user-frie | [TypeScript](https://www.typescriptlang.org/) | [Python](https://www.python.org/) | | | [Google Analytics](https://analytics.google.com/analytics/web/) | | [FontAwesome Icons](https://react-icons.github.io/react-icons/) | [Ruby on Rails](https://rubyonrails.org/) | | | [ESLint](https://eslint.org/) | | [SASS](https://sass-lang.com/) | [C (Emscripten, WebAssembly)](https://emscripten.org/) | | | [Git](https://git-scm.com/) | -| [Single Spa](https://single-spa.js.org/) | [JavaScript](https://www.javascript.com/) | | | [The Movie Database](https://www.themoviedb.org/) | +| [Single Spa](https://single-spa.js.org/) | [JavaScript](https://www.javascript.com/) | | | [The Movie Database](https://www.themoviedb.org/) | ## Contributing From d858afb91294715053605ea4d5a69fcc8873cb7e Mon Sep 17 00:00:00 2001 From: Son Nguyen Hoang Date: Sun, 3 Mar 2024 02:33:14 -0500 Subject: [PATCH 2/3] Fix: Enhanced search feature (#61) --- 404.html | 145 +++++++++++++++++++++++- MovieVerse-Frontend/css/style.css | 105 ++++++++++++++++-- MovieVerse-Frontend/js/search.js | 4 +- index.html | 178 +++++++++++++++++++++++++++++- 4 files changed, 417 insertions(+), 15 deletions(-) diff --git a/404.html b/404.html index 12df5a12..3f290d13 100644 --- a/404.html +++ b/404.html @@ -249,10 +249,13 @@

- - + + +
+
+ @@ -395,6 +398,144 @@

} + + + +

© 2024 The MovieVerse. All rights reserved.

diff --git a/MovieVerse-Frontend/css/style.css b/MovieVerse-Frontend/css/style.css index 24a04d42..5675ac04 100644 --- a/MovieVerse-Frontend/css/style.css +++ b/MovieVerse-Frontend/css/style.css @@ -1439,15 +1439,6 @@ p { background-color: #ff8623; } -#search-results { - display: flex; - flex-wrap: wrap; - justify-content: center; - gap: 20px; - padding: 20px; - margin-left: 0; -} - #search-container { display: none; background-color: rgba(255, 255, 255, 0.1); @@ -2672,6 +2663,102 @@ body { animation: shake 0.5s ease-in-out 5; } +.search-results { + display: flex; + flex-direction: column; + max-width: 600px; + margin: 0 auto; +} + +.search-result-card { + display: flex; + align-items: center; + padding: 10px; + border-radius: 8px; + background-color: #7378c5; + margin: 0; + margin-bottom: 2px; + margin-top: 5px; + width: 300px; + color: #212121; +} + +.search-result-card:hover { + background-color: #ff8623; + transition: 0.3s ease-in; +} + +.search-container { + position: relative; + display: flex; + align-items: center; +} + +.buttons-container { + display: flex; + justify-content: center; + margin-top: 10px; +} + +#clear-search { + background-color: #7378c5; + border: none; + border-radius: 8px; + font: inherit; + cursor: pointer; + color: #000000; + margin-right: 40px; + padding: 5px 10px; + margin-top: 10px; +} + +#clear-search:hover { + background-color: #ff8623; + transition: background-color 0.3s ease; +} + +#view-all-results { + background-color: #7378c5; + border: none; + border-radius: 8px; + padding: 5px 10px; + font: inherit; + cursor: pointer; + color: #000000; + margin-right: 40px; + margin-top: 10px; +} + +#view-all-results:hover { + background-color: #ff8623; + transition: background-color 0.3s ease; +} + +.result-image { + width: 64px; + height: 96px; + object-fit: cover; + border-radius: 4px; +} + +.result-details { + margin-left: 15px; + display: flex; + flex-direction: column; +} + +.result-name { + font-size: 16px; + font-weight: bold; + margin-bottom: 5px; +} + +.result-type { + font-size: 14px; + font-style: italic; + color: #212121; +} + footer { text-align: center; padding: 20px 0; diff --git a/MovieVerse-Frontend/js/search.js b/MovieVerse-Frontend/js/search.js index e51b8e71..2b74250a 100644 --- a/MovieVerse-Frontend/js/search.js +++ b/MovieVerse-Frontend/js/search.js @@ -393,11 +393,11 @@ function showMovies(items, container, category) { const personDetails = await response.json(); if (personDetails.known_for_department === 'Directing') { localStorage.setItem('selectedDirectorId', id); - window.location.href = 'director-details.html?id=' + id; + window.location.href = 'director-details.html?' + id; } else { localStorage.setItem('selectedActorId', id); - window.location.href = 'actor-details.html?id=' + id; + window.location.href = 'actor-details.html?' + id; } } catch (error) { diff --git a/index.html b/index.html index 8c6b0983..1cb0a575 100644 --- a/index.html +++ b/index.html @@ -146,8 +146,13 @@

- + +
+
+ + +
- - -
- + + +
+
+ + +
- @@ -428,6 +430,36 @@

}); + + @@ -399,6 +404,174 @@

© 2024 The MovieVerse. All rights reserved.

+ + + + + + diff --git a/MovieVerse-Frontend/html/about.html b/MovieVerse-Frontend/html/about.html index 8f50616c..5216d67c 100644 --- a/MovieVerse-Frontend/html/about.html +++ b/MovieVerse-Frontend/html/about.html @@ -97,8 +97,13 @@

- + +
+
+ + +
@@ -516,6 +521,174 @@

Useful Links:

window.addEventListener('resize', setBodyClass); + + + + + + diff --git a/MovieVerse-Frontend/html/actor-details.html b/MovieVerse-Frontend/html/actor-details.html index 442a9c8f..5276dce9 100644 --- a/MovieVerse-Frontend/html/actor-details.html +++ b/MovieVerse-Frontend/html/actor-details.html @@ -86,8 +86,13 @@

- + +
+
+ + +
@@ -161,6 +166,174 @@

© 2024 The MovieVerse. All rights reserved.

+ + + + + + diff --git a/MovieVerse-Frontend/html/analytics.html b/MovieVerse-Frontend/html/analytics.html index f3dd3ccd..04dbbf3c 100644 --- a/MovieVerse-Frontend/html/analytics.html +++ b/MovieVerse-Frontend/html/analytics.html @@ -87,8 +87,13 @@

- + +
+
+ + +
@@ -150,5 +155,173 @@

Movie Releases by Countries

© 2024 The MovieVerse. All rights reserved.

+ + + + + + diff --git a/MovieVerse-Frontend/html/api_fails.html b/MovieVerse-Frontend/html/api_fails.html index 6c46fb14..04bce47b 100644 --- a/MovieVerse-Frontend/html/api_fails.html +++ b/MovieVerse-Frontend/html/api_fails.html @@ -287,8 +287,13 @@

- + +
+
+ + +
@@ -400,6 +405,174 @@

+ + + + + + diff --git a/MovieVerse-Frontend/html/chatbot.html b/MovieVerse-Frontend/html/chatbot.html index 0728fdec..9b9c1408 100644 --- a/MovieVerse-Frontend/html/chatbot.html +++ b/MovieVerse-Frontend/html/chatbot.html @@ -124,9 +124,14 @@

-
- + + +
+
+ + +
@@ -184,6 +189,175 @@

Dive deep into t } }); + + + + + + + diff --git a/MovieVerse-Frontend/html/christopher-nolan.html b/MovieVerse-Frontend/html/christopher-nolan.html index 61202823..b22266e6 100644 --- a/MovieVerse-Frontend/html/christopher-nolan.html +++ b/MovieVerse-Frontend/html/christopher-nolan.html @@ -77,8 +77,13 @@

- + +
+
+ + +
@@ -124,6 +129,174 @@

+ + + + + + + + + + + diff --git a/MovieVerse-Frontend/html/create-account.html b/MovieVerse-Frontend/html/create-account.html index 701c7ced..1ac21eb5 100644 --- a/MovieVerse-Frontend/html/create-account.html +++ b/MovieVerse-Frontend/html/create-account.html @@ -139,8 +139,13 @@

- + +
+
+ + +
@@ -400,5 +405,173 @@

Create Account

+ + + + + + diff --git a/MovieVerse-Frontend/html/director-details.html b/MovieVerse-Frontend/html/director-details.html index 641e8999..5005ba1d 100644 --- a/MovieVerse-Frontend/html/director-details.html +++ b/MovieVerse-Frontend/html/director-details.html @@ -91,8 +91,13 @@

- + +
+
+ + +
@@ -133,6 +138,174 @@

+ + + + + + + + + + + diff --git a/MovieVerse-Frontend/html/feedback.html b/MovieVerse-Frontend/html/feedback.html index 83c952a2..3d787c16 100644 --- a/MovieVerse-Frontend/html/feedback.html +++ b/MovieVerse-Frontend/html/feedback.html @@ -345,8 +345,13 @@

- + +
+
+ + +
@@ -464,6 +469,174 @@

Feedback

+ + + + + + diff --git a/MovieVerse-Frontend/html/inception.html b/MovieVerse-Frontend/html/inception.html index b1d755c0..a95a733d 100644 --- a/MovieVerse-Frontend/html/inception.html +++ b/MovieVerse-Frontend/html/inception.html @@ -88,8 +88,13 @@

- + +
+
+ + +
@@ -208,6 +213,174 @@

Add a Comment for This Movie

+ + + + + + diff --git a/MovieVerse-Frontend/html/leonardo-dicaprio.html b/MovieVerse-Frontend/html/leonardo-dicaprio.html index 390f1069..e09545fb 100644 --- a/MovieVerse-Frontend/html/leonardo-dicaprio.html +++ b/MovieVerse-Frontend/html/leonardo-dicaprio.html @@ -76,9 +76,14 @@

- + -
+
+
+ + +
+ 1

@@ -148,6 +153,174 @@

+ + + + + + diff --git a/MovieVerse-Frontend/html/movie-details.html b/MovieVerse-Frontend/html/movie-details.html index 23db9d29..c895fb93 100644 --- a/MovieVerse-Frontend/html/movie-details.html +++ b/MovieVerse-Frontend/html/movie-details.html @@ -92,8 +92,13 @@

- + +
+
+ + +
@@ -254,5 +259,173 @@

Add a Comment for This Movie

+ + + + + + diff --git a/MovieVerse-Frontend/html/movie-match.html b/MovieVerse-Frontend/html/movie-match.html index a5b7664a..fdb598ec 100644 --- a/MovieVerse-Frontend/html/movie-match.html +++ b/MovieVerse-Frontend/html/movie-match.html @@ -90,8 +90,13 @@

- + +
+
+ + +
@@ -220,5 +225,173 @@

Find Your Movie Match

+ + + + + + diff --git a/MovieVerse-Frontend/html/movie-timeline.html b/MovieVerse-Frontend/html/movie-timeline.html index fc6f1cf0..8bd37602 100644 --- a/MovieVerse-Frontend/html/movie-timeline.html +++ b/MovieVerse-Frontend/html/movie-timeline.html @@ -91,8 +91,13 @@

- + +
+
+ + +
@@ -163,6 +168,174 @@

+ + + + + + diff --git a/MovieVerse-Frontend/html/offline.html b/MovieVerse-Frontend/html/offline.html index cadb2975..5cff5cc3 100644 --- a/MovieVerse-Frontend/html/offline.html +++ b/MovieVerse-Frontend/html/offline.html @@ -281,8 +281,13 @@

- + +
+
+ + +
@@ -393,6 +398,174 @@

+ + + + + + diff --git a/MovieVerse-Frontend/html/privacy-policy.html b/MovieVerse-Frontend/html/privacy-policy.html index 8672d429..21393129 100644 --- a/MovieVerse-Frontend/html/privacy-policy.html +++ b/MovieVerse-Frontend/html/privacy-policy.html @@ -116,8 +116,13 @@

- + +
+
+ + +
@@ -471,6 +476,175 @@

Cookies and Web Beacons

© 2024 The MovieVerse. All rights reserved.

+ + + + + + + diff --git a/MovieVerse-Frontend/html/reset-password.html b/MovieVerse-Frontend/html/reset-password.html index 5c1396e3..0e8f675a 100644 --- a/MovieVerse-Frontend/html/reset-password.html +++ b/MovieVerse-Frontend/html/reset-password.html @@ -128,9 +128,14 @@

-
- + + +
+
+ + +
@@ -411,5 +416,173 @@

Reset Password

+ + + + + + diff --git a/MovieVerse-Frontend/html/search.html b/MovieVerse-Frontend/html/search.html index f66198fc..15c050fe 100644 --- a/MovieVerse-Frontend/html/search.html +++ b/MovieVerse-Frontend/html/search.html @@ -76,8 +76,13 @@

- + +
+
+ + +
@@ -190,5 +195,173 @@

Search Results

+ + + + + + diff --git a/MovieVerse-Frontend/html/settings.html b/MovieVerse-Frontend/html/settings.html index ea7f851d..6631dac8 100644 --- a/MovieVerse-Frontend/html/settings.html +++ b/MovieVerse-Frontend/html/settings.html @@ -200,8 +200,13 @@

- + +
+
+ + +
@@ -600,5 +605,173 @@

Change Font Size

© 2024 The MovieVerse. All rights reserved.

+ + + + + + diff --git a/MovieVerse-Frontend/html/sign-in.html b/MovieVerse-Frontend/html/sign-in.html index ebff908f..9e998c7f 100644 --- a/MovieVerse-Frontend/html/sign-in.html +++ b/MovieVerse-Frontend/html/sign-in.html @@ -145,8 +145,13 @@

- + +
+
+ + +
@@ -423,5 +428,173 @@

Sign In

+ + + + + + diff --git a/MovieVerse-Frontend/html/support.html b/MovieVerse-Frontend/html/support.html index 6bfa37be..16e6f8ee 100644 --- a/MovieVerse-Frontend/html/support.html +++ b/MovieVerse-Frontend/html/support.html @@ -346,8 +346,13 @@

- + +
+
+ + +
@@ -465,6 +470,174 @@

Contact Support

+ + + + + + diff --git a/MovieVerse-Frontend/html/terms-of-service.html b/MovieVerse-Frontend/html/terms-of-service.html index b917ab60..8b48de2b 100644 --- a/MovieVerse-Frontend/html/terms-of-service.html +++ b/MovieVerse-Frontend/html/terms-of-service.html @@ -119,8 +119,13 @@

- + +
+
+ + +
@@ -486,6 +491,175 @@

Contact Us

© 2024 The MovieVerse. All rights reserved.

+ + + + + + + diff --git a/MovieVerse-Frontend/html/trivia.html b/MovieVerse-Frontend/html/trivia.html index f721e234..7a2b1b82 100644 --- a/MovieVerse-Frontend/html/trivia.html +++ b/MovieVerse-Frontend/html/trivia.html @@ -103,8 +103,13 @@

- + +
+
+ + +
@@ -179,5 +184,173 @@

Trivia Results

© 2024 The MovieVerse. All rights reserved.

+ + + + + + diff --git a/MovieVerse-Frontend/html/tv-details.html b/MovieVerse-Frontend/html/tv-details.html index 25c324ba..03bef533 100644 --- a/MovieVerse-Frontend/html/tv-details.html +++ b/MovieVerse-Frontend/html/tv-details.html @@ -132,8 +132,13 @@

- + +
+
+ + +
@@ -269,6 +274,174 @@

Add a Comment for This TV Series

+ + + + + + diff --git a/MovieVerse-Frontend/html/user-profile.html b/MovieVerse-Frontend/html/user-profile.html index 78bd7806..fafaf2e4 100644 --- a/MovieVerse-Frontend/html/user-profile.html +++ b/MovieVerse-Frontend/html/user-profile.html @@ -308,8 +308,13 @@

- + +
+
+ + +
@@ -680,5 +685,173 @@

Edit Profile Details

+ + + + + + diff --git a/MovieVerse-Mobile/www/404.html b/MovieVerse-Mobile/www/404.html index 12df5a12..34fa76de 100644 --- a/MovieVerse-Mobile/www/404.html +++ b/MovieVerse-Mobile/www/404.html @@ -249,8 +249,13 @@

- + +
+
+ + +
@@ -395,6 +400,174 @@

} + + + + + +

© 2024 The MovieVerse. All rights reserved.

diff --git a/MovieVerse-Mobile/www/MovieVerse-Frontend/404.html b/MovieVerse-Mobile/www/MovieVerse-Frontend/404.html index ceb9ab38..e8a3aa4e 100644 --- a/MovieVerse-Mobile/www/MovieVerse-Frontend/404.html +++ b/MovieVerse-Mobile/www/MovieVerse-Frontend/404.html @@ -7,11 +7,11 @@ 404 Not Found - The MovieVerse - - + + - + @@ -399,6 +404,174 @@

© 2024 The MovieVerse. All rights reserved.

+ + + + + + diff --git a/MovieVerse-Mobile/www/MovieVerse-Frontend/html/about.html b/MovieVerse-Mobile/www/MovieVerse-Frontend/html/about.html index 8f50616c..5216d67c 100644 --- a/MovieVerse-Mobile/www/MovieVerse-Frontend/html/about.html +++ b/MovieVerse-Mobile/www/MovieVerse-Frontend/html/about.html @@ -97,8 +97,13 @@

- + +
+
+ + +
@@ -516,6 +521,174 @@

Useful Links:

window.addEventListener('resize', setBodyClass); + + + + + + diff --git a/MovieVerse-Mobile/www/MovieVerse-Frontend/html/actor-details.html b/MovieVerse-Mobile/www/MovieVerse-Frontend/html/actor-details.html index 442a9c8f..5276dce9 100644 --- a/MovieVerse-Mobile/www/MovieVerse-Frontend/html/actor-details.html +++ b/MovieVerse-Mobile/www/MovieVerse-Frontend/html/actor-details.html @@ -86,8 +86,13 @@

- + +
+
+ + +
@@ -161,6 +166,174 @@

© 2024 The MovieVerse. All rights reserved.

+ + + + + + diff --git a/MovieVerse-Mobile/www/MovieVerse-Frontend/html/analytics.html b/MovieVerse-Mobile/www/MovieVerse-Frontend/html/analytics.html index f3dd3ccd..04dbbf3c 100644 --- a/MovieVerse-Mobile/www/MovieVerse-Frontend/html/analytics.html +++ b/MovieVerse-Mobile/www/MovieVerse-Frontend/html/analytics.html @@ -87,8 +87,13 @@

- + +
+
+ + +
@@ -150,5 +155,173 @@

Movie Releases by Countries

© 2024 The MovieVerse. All rights reserved.

+ + + + + + diff --git a/MovieVerse-Mobile/www/MovieVerse-Frontend/html/api_fails.html b/MovieVerse-Mobile/www/MovieVerse-Frontend/html/api_fails.html index 6c46fb14..04bce47b 100644 --- a/MovieVerse-Mobile/www/MovieVerse-Frontend/html/api_fails.html +++ b/MovieVerse-Mobile/www/MovieVerse-Frontend/html/api_fails.html @@ -287,8 +287,13 @@

- + +
+
+ + +
@@ -400,6 +405,174 @@

+ + + + + + diff --git a/MovieVerse-Mobile/www/MovieVerse-Frontend/html/chatbot.html b/MovieVerse-Mobile/www/MovieVerse-Frontend/html/chatbot.html index 0728fdec..9b9c1408 100644 --- a/MovieVerse-Mobile/www/MovieVerse-Frontend/html/chatbot.html +++ b/MovieVerse-Mobile/www/MovieVerse-Frontend/html/chatbot.html @@ -124,9 +124,14 @@

-
- + + +
+
+ + +
@@ -184,6 +189,175 @@

Dive deep into t } }); + + + + + + + diff --git a/MovieVerse-Mobile/www/MovieVerse-Frontend/html/christopher-nolan.html b/MovieVerse-Mobile/www/MovieVerse-Frontend/html/christopher-nolan.html index 61202823..b22266e6 100644 --- a/MovieVerse-Mobile/www/MovieVerse-Frontend/html/christopher-nolan.html +++ b/MovieVerse-Mobile/www/MovieVerse-Frontend/html/christopher-nolan.html @@ -77,8 +77,13 @@

- + +
+
+ + +
@@ -124,6 +129,174 @@

+ + + + + + + + + + + diff --git a/MovieVerse-Mobile/www/MovieVerse-Frontend/html/create-account.html b/MovieVerse-Mobile/www/MovieVerse-Frontend/html/create-account.html index 701c7ced..1ac21eb5 100644 --- a/MovieVerse-Mobile/www/MovieVerse-Frontend/html/create-account.html +++ b/MovieVerse-Mobile/www/MovieVerse-Frontend/html/create-account.html @@ -139,8 +139,13 @@

- + +
+
+ + +
@@ -400,5 +405,173 @@

Create Account

+ + + + + + diff --git a/MovieVerse-Mobile/www/MovieVerse-Frontend/html/director-details.html b/MovieVerse-Mobile/www/MovieVerse-Frontend/html/director-details.html index 641e8999..5005ba1d 100644 --- a/MovieVerse-Mobile/www/MovieVerse-Frontend/html/director-details.html +++ b/MovieVerse-Mobile/www/MovieVerse-Frontend/html/director-details.html @@ -91,8 +91,13 @@

- + +
+
+ + +
@@ -133,6 +138,174 @@

+ + + + + + + + + + + diff --git a/MovieVerse-Mobile/www/MovieVerse-Frontend/html/feedback.html b/MovieVerse-Mobile/www/MovieVerse-Frontend/html/feedback.html index 83c952a2..3d787c16 100644 --- a/MovieVerse-Mobile/www/MovieVerse-Frontend/html/feedback.html +++ b/MovieVerse-Mobile/www/MovieVerse-Frontend/html/feedback.html @@ -345,8 +345,13 @@

- + +
+
+ + +
@@ -464,6 +469,174 @@

Feedback

+ + + + + + diff --git a/MovieVerse-Mobile/www/MovieVerse-Frontend/html/inception.html b/MovieVerse-Mobile/www/MovieVerse-Frontend/html/inception.html index b1d755c0..a95a733d 100644 --- a/MovieVerse-Mobile/www/MovieVerse-Frontend/html/inception.html +++ b/MovieVerse-Mobile/www/MovieVerse-Frontend/html/inception.html @@ -88,8 +88,13 @@

- + +
+
+ + +
@@ -208,6 +213,174 @@

Add a Comment for This Movie

+ + + + + + diff --git a/MovieVerse-Mobile/www/MovieVerse-Frontend/html/leonardo-dicaprio.html b/MovieVerse-Mobile/www/MovieVerse-Frontend/html/leonardo-dicaprio.html index 390f1069..e09545fb 100644 --- a/MovieVerse-Mobile/www/MovieVerse-Frontend/html/leonardo-dicaprio.html +++ b/MovieVerse-Mobile/www/MovieVerse-Frontend/html/leonardo-dicaprio.html @@ -76,9 +76,14 @@

- + -
+
+
+ + +
+ 1

@@ -148,6 +153,174 @@

+ + + + + + diff --git a/MovieVerse-Mobile/www/MovieVerse-Frontend/html/movie-details.html b/MovieVerse-Mobile/www/MovieVerse-Frontend/html/movie-details.html index 23db9d29..c895fb93 100644 --- a/MovieVerse-Mobile/www/MovieVerse-Frontend/html/movie-details.html +++ b/MovieVerse-Mobile/www/MovieVerse-Frontend/html/movie-details.html @@ -92,8 +92,13 @@

- + +
+
+ + +
@@ -254,5 +259,173 @@

Add a Comment for This Movie

+ + + + + + diff --git a/MovieVerse-Mobile/www/MovieVerse-Frontend/html/movie-match.html b/MovieVerse-Mobile/www/MovieVerse-Frontend/html/movie-match.html index a5b7664a..fdb598ec 100644 --- a/MovieVerse-Mobile/www/MovieVerse-Frontend/html/movie-match.html +++ b/MovieVerse-Mobile/www/MovieVerse-Frontend/html/movie-match.html @@ -90,8 +90,13 @@

- + +
+
+ + +
@@ -220,5 +225,173 @@

Find Your Movie Match

+ + + + + + diff --git a/MovieVerse-Mobile/www/MovieVerse-Frontend/html/movie-timeline.html b/MovieVerse-Mobile/www/MovieVerse-Frontend/html/movie-timeline.html index fc6f1cf0..8bd37602 100644 --- a/MovieVerse-Mobile/www/MovieVerse-Frontend/html/movie-timeline.html +++ b/MovieVerse-Mobile/www/MovieVerse-Frontend/html/movie-timeline.html @@ -91,8 +91,13 @@

- + +
+
+ + +
@@ -163,6 +168,174 @@

+ + + + + + diff --git a/MovieVerse-Mobile/www/MovieVerse-Frontend/html/offline.html b/MovieVerse-Mobile/www/MovieVerse-Frontend/html/offline.html index cadb2975..5cff5cc3 100644 --- a/MovieVerse-Mobile/www/MovieVerse-Frontend/html/offline.html +++ b/MovieVerse-Mobile/www/MovieVerse-Frontend/html/offline.html @@ -281,8 +281,13 @@

- + +
+
+ + +
@@ -393,6 +398,174 @@

+ + + + + + diff --git a/MovieVerse-Mobile/www/MovieVerse-Frontend/html/privacy-policy.html b/MovieVerse-Mobile/www/MovieVerse-Frontend/html/privacy-policy.html index 8672d429..21393129 100644 --- a/MovieVerse-Mobile/www/MovieVerse-Frontend/html/privacy-policy.html +++ b/MovieVerse-Mobile/www/MovieVerse-Frontend/html/privacy-policy.html @@ -116,8 +116,13 @@

- + +
+
+ + +
@@ -471,6 +476,175 @@

Cookies and Web Beacons

© 2024 The MovieVerse. All rights reserved.

+ + + + + + + diff --git a/MovieVerse-Mobile/www/MovieVerse-Frontend/html/reset-password.html b/MovieVerse-Mobile/www/MovieVerse-Frontend/html/reset-password.html index 5c1396e3..0e8f675a 100644 --- a/MovieVerse-Mobile/www/MovieVerse-Frontend/html/reset-password.html +++ b/MovieVerse-Mobile/www/MovieVerse-Frontend/html/reset-password.html @@ -128,9 +128,14 @@

-
- + + +
+
+ + +
@@ -411,5 +416,173 @@

Reset Password

+ + + + + + diff --git a/MovieVerse-Mobile/www/MovieVerse-Frontend/html/search.html b/MovieVerse-Mobile/www/MovieVerse-Frontend/html/search.html index f66198fc..15c050fe 100644 --- a/MovieVerse-Mobile/www/MovieVerse-Frontend/html/search.html +++ b/MovieVerse-Mobile/www/MovieVerse-Frontend/html/search.html @@ -76,8 +76,13 @@

- + +
+
+ + +
@@ -190,5 +195,173 @@

Search Results

+ + + + + + diff --git a/MovieVerse-Mobile/www/MovieVerse-Frontend/html/settings.html b/MovieVerse-Mobile/www/MovieVerse-Frontend/html/settings.html index ea7f851d..6631dac8 100644 --- a/MovieVerse-Mobile/www/MovieVerse-Frontend/html/settings.html +++ b/MovieVerse-Mobile/www/MovieVerse-Frontend/html/settings.html @@ -200,8 +200,13 @@

- + +
+
+ + +
@@ -600,5 +605,173 @@

Change Font Size

© 2024 The MovieVerse. All rights reserved.

+ + + + + + diff --git a/MovieVerse-Mobile/www/MovieVerse-Frontend/html/sign-in.html b/MovieVerse-Mobile/www/MovieVerse-Frontend/html/sign-in.html index ebff908f..9e998c7f 100644 --- a/MovieVerse-Mobile/www/MovieVerse-Frontend/html/sign-in.html +++ b/MovieVerse-Mobile/www/MovieVerse-Frontend/html/sign-in.html @@ -145,8 +145,13 @@

- + +
+
+ + +
@@ -423,5 +428,173 @@

Sign In

+ + + + + + diff --git a/MovieVerse-Mobile/www/MovieVerse-Frontend/html/support.html b/MovieVerse-Mobile/www/MovieVerse-Frontend/html/support.html index 6bfa37be..16e6f8ee 100644 --- a/MovieVerse-Mobile/www/MovieVerse-Frontend/html/support.html +++ b/MovieVerse-Mobile/www/MovieVerse-Frontend/html/support.html @@ -346,8 +346,13 @@

- + +
+
+ + +
@@ -465,6 +470,174 @@

Contact Support

+ + + + + + diff --git a/MovieVerse-Mobile/www/MovieVerse-Frontend/html/terms-of-service.html b/MovieVerse-Mobile/www/MovieVerse-Frontend/html/terms-of-service.html index b917ab60..8b48de2b 100644 --- a/MovieVerse-Mobile/www/MovieVerse-Frontend/html/terms-of-service.html +++ b/MovieVerse-Mobile/www/MovieVerse-Frontend/html/terms-of-service.html @@ -119,8 +119,13 @@

- + +
+
+ + +
@@ -486,6 +491,175 @@

Contact Us

© 2024 The MovieVerse. All rights reserved.

+ + + + + + + diff --git a/MovieVerse-Mobile/www/MovieVerse-Frontend/html/trivia.html b/MovieVerse-Mobile/www/MovieVerse-Frontend/html/trivia.html index f721e234..7a2b1b82 100644 --- a/MovieVerse-Mobile/www/MovieVerse-Frontend/html/trivia.html +++ b/MovieVerse-Mobile/www/MovieVerse-Frontend/html/trivia.html @@ -103,8 +103,13 @@

- + +
+
+ + +
@@ -179,5 +184,173 @@

Trivia Results

© 2024 The MovieVerse. All rights reserved.

+ + + + + + diff --git a/MovieVerse-Mobile/www/MovieVerse-Frontend/html/tv-details.html b/MovieVerse-Mobile/www/MovieVerse-Frontend/html/tv-details.html index 25c324ba..03bef533 100644 --- a/MovieVerse-Mobile/www/MovieVerse-Frontend/html/tv-details.html +++ b/MovieVerse-Mobile/www/MovieVerse-Frontend/html/tv-details.html @@ -132,8 +132,13 @@

- + +
+
+ + +
@@ -269,6 +274,174 @@

Add a Comment for This TV Series

+ + + + + + diff --git a/MovieVerse-Mobile/www/MovieVerse-Frontend/html/user-profile.html b/MovieVerse-Mobile/www/MovieVerse-Frontend/html/user-profile.html index 78bd7806..fafaf2e4 100644 --- a/MovieVerse-Mobile/www/MovieVerse-Frontend/html/user-profile.html +++ b/MovieVerse-Mobile/www/MovieVerse-Frontend/html/user-profile.html @@ -308,8 +308,13 @@

- + +
+
+ + +
@@ -680,5 +685,173 @@

Edit Profile Details

+ + + + + + diff --git a/MovieVerse-Mobile/www/MovieVerse-Frontend/js/search.js b/MovieVerse-Mobile/www/MovieVerse-Frontend/js/search.js index e51b8e71..2b74250a 100644 --- a/MovieVerse-Mobile/www/MovieVerse-Frontend/js/search.js +++ b/MovieVerse-Mobile/www/MovieVerse-Frontend/js/search.js @@ -393,11 +393,11 @@ function showMovies(items, container, category) { const personDetails = await response.json(); if (personDetails.known_for_department === 'Directing') { localStorage.setItem('selectedDirectorId', id); - window.location.href = 'director-details.html?id=' + id; + window.location.href = 'director-details.html?' + id; } else { localStorage.setItem('selectedActorId', id); - window.location.href = 'actor-details.html?id=' + id; + window.location.href = 'actor-details.html?' + id; } } catch (error) { diff --git a/MovieVerse-Mobile/www/index.html b/MovieVerse-Mobile/www/index.html index eb7074d5..d7d6908f 100644 --- a/MovieVerse-Mobile/www/index.html +++ b/MovieVerse-Mobile/www/index.html @@ -1,4 +1,4 @@ - + @@ -146,12 +146,17 @@

- + +
+
+ + +