forked from 4GeeksAcademy/react-flask-hello
-
Notifications
You must be signed in to change notification settings - Fork 1
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
Marianacss #13
Open
mdesarrollo24
wants to merge
29
commits into
Development
Choose a base branch
from
marianacss
base: Development
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Marianacss #13
Changes from all commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
bd6c25e
pruebas
mdesarrollo24 342c854
pruebas
mdesarrollo24 b5517c0
pruebas 2
mdesarrollo24 b07db46
integracion con Development
mdesarrollo24 167c6f9
primer commit
mdesarrollo24 725b4ba
segundo commit
mdesarrollo24 1ea414a
tercer commit
mdesarrollo24 ded0fe6
commit con funcionalidad
mdesarrollo24 1b21dbf
commit con funcionalidades
mdesarrollo24 cb9732c
prueba petviews
mdesarrollo24 883ceb1
prueba vistas
mdesarrollo24 1a04e3a
Petcard in progress
mdesarrollo24 cd35d56
prueba
mdesarrollo24 8e5bd77
guardado
mdesarrollo24 a62c2ac
cards en proceso 2
mdesarrollo24 39b19fb
cards in process
mdesarrollo24 60494c1
Se conectó el backend con el front para la vista de update password
mdesarrollo24 3d48797
card individual
mdesarrollo24 028f55b
[Prueba de conexion entre PetView y datos de API]
MatiRosas31 308adff
Merge pull request #14 from 4GeeksAcademy/conectandoBackendDemarianacss
MatiRosas31 be85710
cards
mdesarrollo24 f441132
cards en proceso
mdesarrollo24 4ee71ad
integracion con Development
mdesarrollo24 35e7199
ok
mdesarrollo24 9370ea0
cards faltando detalles
mdesarrollo24 76fc4a3
cardsin progress
mdesarrollo24 386026a
cards para corregir
mdesarrollo24 1cdc2cc
Merge branch 'Development' into marianacss
mdesarrollo24 504eab8
Added PetCard.jsx
MatiRosas31 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
migrations/versions/65ec0a935ab9_.py → migrations/versions/d6e7917535b2_.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import React from "react"; | ||
import { PasswordResetProvider } from "./PasswordResetContext"; // Importamos el proveedor | ||
import ResetPassword from "./ResetPassword"; // Importamos el componente de recuperación de contraseña | ||
import PetsView from "./PetsView"; // Vista de mascotas | ||
|
||
function App() { | ||
return ( | ||
<PasswordResetProvider> | ||
<div className="App"> | ||
<h1>Aplicación de Recuperación de Contraseña y Mascotas</h1> | ||
<ResetPassword /> {/* Componente de recuperación de contraseña */} | ||
<PetsView /> {/* Componente de vista de mascotas */} | ||
</div> | ||
</PasswordResetProvider> | ||
); | ||
} | ||
|
||
export default App; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
import React from "react"; | ||
import "../../styles/pets-view.css"; | ||
|
||
const Filters = ({ onFilterChange }) => { | ||
return ( | ||
<div className="filters"> | ||
<h4>Filter</h4> | ||
<div> | ||
<label> | ||
<input type="radio" name="gender" value="male" onChange={onFilterChange} /> | ||
Male | ||
</label> | ||
<label> | ||
<input type="radio" name="gender" value="female" onChange={onFilterChange} /> | ||
Female | ||
</label> | ||
</div> | ||
<div> | ||
<label> | ||
<input type="checkbox" name="color" value="black" onChange={onFilterChange} /> | ||
Black | ||
</label> | ||
<label> | ||
<input type="checkbox" name="color" value="white" onChange={onFilterChange} /> | ||
White | ||
</label> | ||
<label> | ||
<input type="checkbox" name="color" value="brown" onChange={onFilterChange} /> | ||
Brown | ||
</label> | ||
</div> | ||
<div> | ||
<label> | ||
<input type="radio" name="size" value="small" onChange={onFilterChange} /> | ||
Small | ||
</label> | ||
<label> | ||
<input type="radio" name="size" value="large" onChange={onFilterChange} /> | ||
Large | ||
</label> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default Filters; |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Examinar si estan bien los cambios