Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat/webapp/new login #64

Merged
merged 20 commits into from
Mar 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
2ff192f
chore: fixed some security issues in the packages
jjgancfer Feb 14, 2024
d3dc22a
chore: restore commented login-related code and slightly modified the…
jjgancfer Feb 14, 2024
4efd97f
feat: initial version of the new login screen
jjgancfer Feb 16, 2024
16a7396
fix: replace old translation names
jjgancfer Feb 16, 2024
79d085b
Merge commit 'd2b8c588cd2bb569caf1ac326eb07191673bc99e' into feat/web…
jjgancfer Feb 16, 2024
2be12c6
feat: commenting the navigation since it does not make sense there. I…
gony02 Feb 27, 2024
ea3dd1c
feat: Creating the signup view
sergiorodriguezgarcia Feb 27, 2024
f9954fb
feat: creating the login stylesheet and improving the UI in the jsx w…
gony02 Feb 27, 2024
3707f2b
feat: changing the complete look and feel of the login. Deleting the …
gony02 Feb 27, 2024
714df87
feat: add animation to the login button.
gony02 Feb 28, 2024
ed1960b
feat: creating a new button component to use in the whole application.
gony02 Feb 28, 2024
1e20680
feat: Use email instead of username to log in. Updating international…
gony02 Mar 1, 2024
90e10ab
feat: adding tests for the login.
gony02 Mar 1, 2024
fcbf227
fix: useNavigate() hook no longer showing errors
jjgancfer Mar 1, 2024
6b976af
Merge remote-tracking branch 'origin/develop' into feat/webapp/new-login
gony02 Mar 1, 2024
abffe75
fix: passing the tests excepting two of them.
gony02 Mar 1, 2024
6584587
fix: Making the Login.test work correctly
sergiorodriguezgarcia Mar 3, 2024
e433266
feat: In login internationalizing the error message, changing the sho…
gony02 Mar 3, 2024
b3ab87c
feat: fixing the tests due to internationalizing the login.
gony02 Mar 3, 2024
348eb38
feat: trying to fix sonarCloud errors.
gony02 Mar 3, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
116 changes: 60 additions & 56 deletions webapp/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion webapp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,22 @@
"dependencies": {
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.0",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.2",
"axios": "^1.6.5",
"dotenv": "^16.4.1",
"framer-motion": "^11.0.3",
"framer-motion": "^11.0.6",
"i18next": "^23.8.2",
"i18next-browser-languagedetector": "^7.2.0",
"i18next-http-backend": "^2.4.3",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^14.0.5",
"react-icons": "^5.0.1",
"react-router": "^6.21.3",
"react-router-dom": "^6.21.3",
"react-scripts": "5.0.1",
Expand Down
13 changes: 11 additions & 2 deletions webapp/public/locales/en/translation.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"nav":{
"common": {
"home": "Home",
"api_docs": "API Documentation",
"statistics": {
Expand All @@ -9,6 +9,15 @@
},
"play": "Play",
"login": "Log in",
"register": "Register"
"register": "Register",
"submit": "Submit"
},
"session": {
"username": "Username",
"password": "Password",
"email": "Email"
},
"error": {
"login": "An ERROR occurred during login"
}
}
12 changes: 10 additions & 2 deletions webapp/public/locales/es/translation.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"nav":{
"common":{
"home": "Inicio",
"api_docs": "Documentación de la API",
"statistics": {
Expand All @@ -10,5 +10,13 @@
"play": "Jugar",
"login": "Iniciar sesión",
"register": "Registrarse"
},
"session": {
"username": "Nombre de usuario",
"password": "Contraseña",
"email": "Correo electrónico"
},
"error": {
"login": "Ocurrió un ERROR en el login"
}
}
}
Loading