-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
VistasRestablecerContraseñaTerminada
- Loading branch information
1 parent
39ce293
commit ff7ad56
Showing
20 changed files
with
339 additions
and
81 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import * as React from "react" | ||
|
||
export default function Dowload(props) { | ||
return ( | ||
<svg | ||
width="1em" | ||
height="1em" | ||
viewBox="0 0 16 19" | ||
fill="none" | ||
xmlns="http://www.w3.org/2000/svg" | ||
{...props} | ||
> | ||
<path | ||
fillRule="evenodd" | ||
clipRule="evenodd" | ||
d="M16 18.619H.667v-2.19H16v2.19zM.667 6.571h4.38V0h6.572v6.571H16l-7.667 7.667L.667 6.571z" | ||
fill={props.color} | ||
/> | ||
</svg> | ||
) | ||
} |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import * as React from 'react' | ||
import * as React from "react" | ||
|
||
export default function Search(props) { | ||
return ( | ||
|
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,9 @@ | ||
import PasswordReset from "../sections/Update/PasswordReset" | ||
|
||
export default function Udpate() { | ||
return ( | ||
<div> | ||
<PasswordReset /> | ||
</div> | ||
) | ||
} |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,37 @@ | ||
import styles from "../../styles/sections/Show.module.css" | ||
import { FormLabel, Input, Button, Text } from "@chakra-ui/react" | ||
|
||
export default function Show() { | ||
return ( | ||
<div> | ||
<Text className={styles.labelPrincipal}>Datos personales</Text> | ||
<p className={styles.labelsub}> | ||
Puedes cambiar los datos de tu perfil cuantas veces lo consideres | ||
necesario. | ||
</p> | ||
<div className={styles.Entrada}> | ||
<div> | ||
<FormLabel className={styles.label}>Nombres</FormLabel> | ||
<Input | ||
borderColor="black.100" | ||
type="text" | ||
className={styles.Entrada} | ||
placeholder="Escribe tus nombres aquí" | ||
/> | ||
</div> | ||
<div> | ||
<FormLabel className={styles.label}>Apellidos</FormLabel> | ||
<Input | ||
borderColor="black.100" | ||
type="text" | ||
className={styles.Entrada} | ||
placeholder="Escribe tus apellidos aquí" | ||
/> | ||
</div> | ||
<div className={styles.Boton}> | ||
<Button variant="primary">Guardar Cambios</Button> | ||
</div> | ||
</div> | ||
</div> | ||
) | ||
} |
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,47 @@ | ||
import styles from "../../styles/sections/Show.module.css" | ||
import { Box, Text, Flex, Spacer, Link } from "@chakra-ui/react" | ||
import ZIcon from "../../components/Icon/ZIcon" | ||
|
||
export default function Show() { | ||
return ( | ||
<div> | ||
<Text className={styles.labelPrincipal}>Historial</Text> | ||
<p className={styles.labelsub}> | ||
Puedes ver tu lista de pendientes de pago aquí. | ||
</p> | ||
<div> | ||
<Flex backgroundColor="gray.200" padding="2" marginBottom="20px"> | ||
<Box p="2"> | ||
<Text size="md">ID:</Text> | ||
<Text size="md">Monto:</Text> | ||
</Box> | ||
<Spacer /> | ||
<Box flex=""> | ||
<Link> | ||
<ZIcon name="search" /> | ||
</Link> | ||
<Link> | ||
<ZIcon name="dowload" /> | ||
</Link> | ||
</Box> | ||
</Flex> | ||
|
||
<Flex backgroundColor="gray.200" padding="2" marginBottom="20px"> | ||
<Box p="2"> | ||
<Text size="md">ID:</Text> | ||
<Text size="md">Monto:</Text> | ||
</Box> | ||
<Spacer /> | ||
<Box> | ||
<Link> | ||
<ZIcon name="search" /> | ||
</Link> | ||
<Link> | ||
<ZIcon name="dowload" /> | ||
</Link> | ||
</Box> | ||
</Flex> | ||
</div> | ||
</div> | ||
) | ||
} |
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,3 @@ | ||
export default function Show() { | ||
return <div>Metodos de pago</div> | ||
} |
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,37 @@ | ||
import styles from "../../styles/sections/Show.module.css" | ||
import { FormLabel, Input, Button, Text } from "@chakra-ui/react" | ||
|
||
export default function Show() { | ||
return ( | ||
<div> | ||
<Text className={styles.labelPrincipal}>Contraseña</Text> | ||
<p className={styles.labelsub}> | ||
Puedes cambiar tu contraseña cuantas veces lo necesites. Te recomendamos | ||
utilizar numeros y letras. | ||
</p> | ||
<div className={styles.Entrada}> | ||
<div> | ||
<FormLabel className={styles.label}>Contraseña actual</FormLabel> | ||
<Input | ||
borderColor="black.100" | ||
type={"password"} | ||
placeholder="Ingrese contraseña actual" | ||
className={styles.Entrada} | ||
/> | ||
</div> | ||
<div> | ||
<FormLabel className={styles.label}>Nueva contraseña</FormLabel> | ||
<Input | ||
borderColor="black.100" | ||
type={"password"} | ||
placeholder="Ingrese contraseña nueva" | ||
className={styles.Entrada} | ||
/> | ||
</div> | ||
<div className={styles.Boton}> | ||
<Button variant="primary">Guardar Cambios</Button> | ||
</div> | ||
</div> | ||
</div> | ||
) | ||
} |
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,40 @@ | ||
import styles from "../../styles/sections/Show.module.css" | ||
import { Box, Text, Button, Flex, Spacer } from "@chakra-ui/react" | ||
|
||
export default function Show() { | ||
return ( | ||
<div> | ||
<Text className={styles.labelPrincipal}>Realizar Pago</Text> | ||
<p className={styles.labelsub}> | ||
Puedes revisar tu lista de pendientes de pago aquí. | ||
</p> | ||
<div> | ||
<Flex backgroundColor="gray.200" padding="2" marginBottom="20px"> | ||
<Box p="2"> | ||
<Text size="md">Nombre del servicio:</Text> | ||
<Text size="md">Monto:</Text> | ||
</Box> | ||
<Spacer /> | ||
<Box> | ||
<Button bg="primary" p={4} color="white" mr="4" my="4"> | ||
Pagar | ||
</Button> | ||
</Box> | ||
</Flex> | ||
|
||
<Flex backgroundColor="gray.200" padding="2" marginBottom="20px"> | ||
<Box p="2"> | ||
<Text size="md">Nombre del servicio:</Text> | ||
<Text size="md">Monto:</Text> | ||
</Box> | ||
<Spacer /> | ||
<Box> | ||
<Button bg="primary" p={4} color="white" mr="4" my="4"> | ||
Pagar | ||
</Button> | ||
</Box> | ||
</Flex> | ||
</div> | ||
</div> | ||
) | ||
} |
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
Oops, something went wrong.