katoikia-app/mobile-ui/components/Profile.js

57 lines
1.4 KiB
JavaScript
Raw Normal View History

2022-08-17 16:36:33 +00:00
import React from "react";
import {
2022-08-17 21:08:38 +00:00
Box,
Heading,
VStack,
FormControl,
Input,
Button,
Center
2022-08-17 16:36:33 +00:00
} from "native-base";
export default function Profile(){
return (
2022-08-17 21:08:38 +00:00
<Center>
<Box safeArea p="2" w="90%" maxW="290" py="8">
<Heading size="lg" color="coolGray.800" _dark={{
color: "warmGray.50"
}} fontWeight="semibold">
Welcome
</Heading>
<Heading mt="1" color="coolGray.600" _dark={{
color: "warmGray.200"
}} fontWeight="medium" size="xs">
Sign up to continue!
</Heading>
<VStack space={3} mt="5">
<FormControl>
<FormControl.Label>Nombre</FormControl.Label>
<Input />
</FormControl>
<FormControl>
<FormControl.Label>Correo Electrónico</FormControl.Label>
<Input />
</FormControl>
<FormControl>
<FormControl.Label>Teléfono</FormControl.Label>
<Input type="password" />
</FormControl>
<FormControl>
<FormControl.Label>Contraseña actual</FormControl.Label>
<Input type="password" />
</FormControl>
<Button mt="2" backgroundColor="orange.300">
Actualizar
</Button>
<Button mt="6" colorScheme="error">
Cerrar sesión
</Button>
</VStack>
</Box>
</Center>
2022-08-17 16:36:33 +00:00
)
}