Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/Arquisoft/wiq_es2c
Browse files Browse the repository at this point in the history
  • Loading branch information
UO289337 committed Apr 28, 2024
2 parents 1392ce1 + 6f70b7b commit b81a309
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 4 deletions.
23 changes: 22 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,27 @@ This repo is a basic application composed of several components.

Both the user and auth service share a Mongo database that is accessed with mongoose.

## User Guide

### For Normal Users
As a normal user, you can use the web application to access basic features such as:

- Logging in to your account
- Registering a new account
- Accessing the game and playing
- Viewing your game history
- Viewing the ranking

### For Administrators

As an administrator, you have access to additional features, including:

- Access to the APIs for managing questions and users
- Ability to view user accounts
- Ability to view game statistics and the ranking

Please note that administrators do not have access to play the game from registration to gameplay and its functionalities.

## Quick start guide

### Using docker
Expand Down Expand Up @@ -116,7 +137,7 @@ This action uses three secrets that must be configured in the repository:
Note that this action logs in the remote machine and downloads the docker-compose file from the repository and launches it. Obviously, previous actions have been executed which have uploaded the docker images to the GitHub Packages repository.
# Development Team
## Development Team
| 📚 UO | 🧑‍💻 Name | 📧 Email |
| :---: | :---: | :---: |
Expand Down
5 changes: 3 additions & 2 deletions webapp/src/CustomContainer.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@ export function CustomContainer({ children, ...props }) {
flexDirection: 'column',
justifyContent: 'center',
alignItems: 'center',
height: '77vh',
height: '100vh',
width: '100%',
maxHeight: '80vh', overflow: 'auto'
maxHeight: '100vh',
overflow: 'auto',
}}
{...props}
>
Expand Down
2 changes: 1 addition & 1 deletion webapp/src/components/Ranking.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ const Ranking = () => {

return (
<CustomContainer>
<Box border={2} borderColor="black" p={3} borderRadius={8} bgcolor="#EE6D72" mb={5}>
<Box border={2} borderColor="black" p={3} borderRadius={8} bgcolor="#EE6D72" mb={5} marginTop={12}>
<Typography variant="h5" align="center" style={{ color: 'white', fontWeight: 'bold', marginBottom: '16px' }}>
{t("textoTop")}
</Typography>
Expand Down

0 comments on commit b81a309

Please sign in to comment.