Skip to content

Commit

Permalink
Merge pull request #463 from Arquisoft/mejoras
Browse files Browse the repository at this point in the history
Mejoras
  • Loading branch information
uo283055 authored May 7, 2024
2 parents b28f9c6 + 5adec10 commit cfe4896
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 1 deletion.
Binary file modified webapp/public/favicon.ico
Binary file not shown.
2 changes: 1 addition & 1 deletion webapp/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>React App</title>
<title>WIQ06B</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
Expand Down
Binary file modified webapp/public/logo192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified webapp/public/logo512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions webapp/src/components/AddUser.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ const AddUser = () => {
label="Username"
value={username}
onChange={(e) => setUsername(e.target.value)}
inputProps={{ maxLength: 20 }}
/>
<TextField
name="password"
Expand All @@ -45,6 +46,7 @@ const AddUser = () => {
type="password"
value={password}
onChange={(e) => setPassword(e.target.value)}
inputProps={{ maxLength: 30 }}
/>
<Button variant="contained" color="primary" onClick={addUser}>
Añadir usuario
Expand Down
2 changes: 2 additions & 0 deletions webapp/src/components/Login.js
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,7 @@ const Login = ({ setLogged }) => {
label="Username"
value={username}
onChange={(e) => setUsername(e.target.value)}
inputProps={{ maxLength: 20 }}
/>
<TextField
name = "password"
Expand All @@ -181,6 +182,7 @@ const Login = ({ setLogged }) => {
type="password"
value={password}
onChange={(e) => setPassword(e.target.value)}
inputProps={{ maxLength: 30 }}
/>
<Button variant="contained" color="primary" onClick={loginUser}>
Iniciar sesión
Expand Down

0 comments on commit cfe4896

Please sign in to comment.