diff --git a/mobile-ui/components/Home.js b/mobile-ui/components/Home.js index 04070bb0..6f35a009 100644 --- a/mobile-ui/components/Home.js +++ b/mobile-ui/components/Home.js @@ -2,7 +2,6 @@ import React from "react"; import { Text, HStack, - NativeBaseProvider, IconButton, Box, StatusBar, @@ -14,10 +13,10 @@ import { export default function Home(){ return ( -
+
- + } /> diff --git a/mobile-ui/components/LogIn.js b/mobile-ui/components/LogIn.js index ed542d83..c5b5e76d 100644 --- a/mobile-ui/components/LogIn.js +++ b/mobile-ui/components/LogIn.js @@ -2,22 +2,20 @@ import React from "react"; import { Text, Link, - HStack, + View, Center, Heading, - Switch, - useColorMode, - NativeBaseProvider, - extendTheme, VStack, Box, FormControl, Input, Button, - Image + Image, + TextInput } from "native-base"; import logo from "../assets/logo-katoikia.png"; - +import { Entypo } from '@expo/vector-icons'; +import { MaterialCommunityIcons } from '@expo/vector-icons'; export default function LogIn({navigation}) { return ( @@ -54,12 +52,20 @@ export default function LogIn({navigation}) { - Correo Electrónico - + Correo Electrónico + + + + + + - Contraseña - + Contraseña + + + + navigation.navigate('Password')} + > + Recuperar contraseña @@ -82,7 +90,5 @@ export default function LogIn({navigation}) {
- - ); } \ No newline at end of file diff --git a/mobile-ui/components/Profile.js b/mobile-ui/components/Profile.js new file mode 100644 index 00000000..e69de29b diff --git a/mobile-ui/components/RecoverPassword.js b/mobile-ui/components/RecoverPassword.js index 62dce460..a16522f5 100644 --- a/mobile-ui/components/RecoverPassword.js +++ b/mobile-ui/components/RecoverPassword.js @@ -1,13 +1,56 @@ -import { Center } from "native-base"; import React from "react"; - +import { + Text, + Link, + Center, + Heading, + VStack, + Box, + FormControl, + Input, + Button + } from "native-base"; export default function RecoverPassword () { return ( +
+ + + Recupere su contraseña + + + Se le enviaran las instrucciones al correo electrónico + -
+ + + Correo Electrónico + + + + + + + +
- -
) } \ No newline at end of file