2022-08-09 22:03:48 +00:00
|
|
|
import React from "react";
|
2022-08-13 03:56:58 +00:00
|
|
|
import {
|
|
|
|
Text,
|
|
|
|
Link,
|
|
|
|
Center,
|
|
|
|
Heading,
|
|
|
|
VStack,
|
|
|
|
Box,
|
|
|
|
FormControl,
|
|
|
|
Input,
|
|
|
|
Button
|
|
|
|
} from "native-base";
|
2022-08-09 22:03:48 +00:00
|
|
|
export default function RecoverPassword () {
|
|
|
|
|
|
|
|
return (
|
2022-08-13 03:56:58 +00:00
|
|
|
<Center w="100%">
|
|
|
|
<Box safeArea p="2" py="8" w="90%" maxW="290">
|
|
|
|
<Heading
|
|
|
|
size="lg"
|
|
|
|
fontWeight="600"
|
|
|
|
color="coolGray.800"
|
|
|
|
_dark={{
|
|
|
|
color: "warmGray.50",
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
Recupere su contraseña
|
|
|
|
</Heading>
|
|
|
|
<Heading
|
|
|
|
mt="1"
|
|
|
|
_dark={{
|
|
|
|
color: "warmGray.200",
|
|
|
|
}}
|
|
|
|
color="coolGray.600"
|
|
|
|
fontWeight="medium"
|
|
|
|
size="xs"
|
|
|
|
>
|
|
|
|
Se le enviaran las instrucciones al correo electrónico
|
|
|
|
</Heading>
|
2022-08-09 22:03:48 +00:00
|
|
|
|
2022-08-13 03:56:58 +00:00
|
|
|
<VStack space={3} mt="5">
|
|
|
|
<FormControl>
|
|
|
|
<FormControl.Label> Correo Electrónico</FormControl.Label>
|
|
|
|
<Input />
|
|
|
|
</FormControl>
|
|
|
|
|
|
|
|
<Button mt="2" colorScheme="primary" onPress={() => navigation.navigate('Home')}
|
|
|
|
>
|
|
|
|
<Text>Recuperar contraseña</Text>
|
|
|
|
</Button>
|
|
|
|
|
|
|
|
</VStack>
|
|
|
|
</Box>
|
|
|
|
</Center>
|
2022-08-09 22:03:48 +00:00
|
|
|
|
|
|
|
)
|
|
|
|
}
|