summaryrefslogtreecommitdiffstats
path: root/screens/passwordRecovery.js
diff options
context:
space:
mode:
authorAlberto Duarte (PWC) <alberto.duarte.delgado@pwc.com>2023-10-09 17:31:33 +0100
committerAlberto Duarte (PWC) <alberto.duarte.delgado@pwc.com>2023-10-09 17:31:33 +0100
commit69b9513a19e8d0aa280bae8ec7b91dd5e81de2fa (patch)
tree0d2e7e43874f26ac75687183552dc401d1bdd2cf /screens/passwordRecovery.js
parent6ff7c459e3d08ebdf6da6973ebe0410b5cab9c0a (diff)
Second commitmain
Diffstat (limited to 'screens/passwordRecovery.js')
-rw-r--r--screens/passwordRecovery.js108
1 files changed, 54 insertions, 54 deletions
diff --git a/screens/passwordRecovery.js b/screens/passwordRecovery.js
index 61a5f10..94d00f2 100644
--- a/screens/passwordRecovery.js
+++ b/screens/passwordRecovery.js
@@ -1,54 +1,54 @@
-import {
- Keyboard,
- KeyboardAvoidingView,
- Platform,
- Pressable,
- SafeAreaView,
- Text,
- TextInput,
- TouchableWithoutFeedback,
- View,
-} from 'react-native';
-
-import tw from 'twrnc';
-
-import Logo from '../static/images/netflix-logo.svg';
-
-const PasswordRecovery = ({navigation}) => {
- return (
- <SafeAreaView style={tw`bg-black flex-1`}>
- <TouchableWithoutFeedback
- onPress={() => {
- Keyboard.dismiss();
- }}
- >
- <KeyboardAvoidingView
- behavior={Platform.OS === 'ios' ? 'padding' : 'height'}
- style={tw`flex-1`}
- >
- <View style={tw`py-6 px-8 flex items-center justify-center`}>
- </View>
- <View style={tw`flex-1 items-center justify-center px-12`}>
- <Text style={tw`text-white text-2xl mb-12 self-start`}>Recuperar contraseña</Text>
- <TextInput
- style={tw`h-12 px-4 font-medium bg-white/20 rounded w-full text-white mb-8`}
- placeholderTextColor={tw.color('text-white/20')}
- placeholder={'Email'}
- autoCorrect={false}
- autoCapitalize={'none'}
- keyboardType={'email-address'}
- />
- <Pressable style={tw`mb-12`}>
- <Text style={tw`text-white/40 text-xl`}>Recuperar contraseña</Text>
- </Pressable>
- <Pressable onPress={() => navigation.goBack()} style={tw`mb-16`}>
- <Text style={tw`text-white`}>Volver</Text>
- </Pressable>
- </View>
- </KeyboardAvoidingView>
- </TouchableWithoutFeedback>
- </SafeAreaView>
- );
-};
-
-export default PasswordRecovery;
+import {
+ Keyboard,
+ KeyboardAvoidingView,
+ Platform,
+ Pressable,
+ SafeAreaView,
+ Text,
+ TextInput,
+ TouchableWithoutFeedback,
+ View,
+} from 'react-native';
+
+import tw from 'twrnc';
+
+import Logo from '../static/images/netflix-logo.svg';
+
+const PasswordRecovery = ({navigation}) => {
+ return (
+ <SafeAreaView style={tw`bg-black flex-1`}>
+ <TouchableWithoutFeedback
+ onPress={() => {
+ Keyboard.dismiss();
+ }}
+ >
+ <KeyboardAvoidingView
+ behavior={Platform.OS === 'ios' ? 'padding' : 'height'}
+ style={tw`flex-1`}
+ >
+ <View style={tw`py-6 px-8 flex items-center justify-center`}>
+ </View>
+ <View style={tw`flex-1 items-center justify-center px-12`}>
+ <Text style={tw`text-white text-2xl mb-12 self-start`}>Recuperar contraseña</Text>
+ <TextInput
+ style={tw`h-12 px-4 font-medium bg-white/20 rounded w-full text-white mb-8`}
+ placeholderTextColor={tw.color('text-white/20')}
+ placeholder={'Email'}
+ autoCorrect={false}
+ autoCapitalize={'none'}
+ keyboardType={'email-address'}
+ />
+ <Pressable style={tw`mb-12`}>
+ <Text style={tw`text-white/40 text-xl`}>Recuperar contraseña</Text>
+ </Pressable>
+ <Pressable onPress={() => navigation.goBack()} style={tw`mb-16`}>
+ <Text style={tw`text-white`}>Volver</Text>
+ </Pressable>
+ </View>
+ </KeyboardAvoidingView>
+ </TouchableWithoutFeedback>
+ </SafeAreaView>
+ );
+};
+
+export default PasswordRecovery;