Adding Register option on the app

This commit is contained in:
Adolfo Reyna
2025-02-04 23:55:59 -05:00
parent 3011c1879e
commit caaed40476
5 changed files with 219 additions and 35 deletions

View File

@@ -42,12 +42,6 @@ let LoginForm = () => {
return (
<View style={styles.mainView}>
<Image
style={styles.logo}
source={require('./../assets/icon.png')}
/>
<Text style={styles.header}>EMI Fellowship</Text>
<Text >{i18n.t("message.login")}</Text>
<TextInput
style={styles.input}
onChangeText={text => setEmail(text)}
@@ -107,29 +101,10 @@ export default LoginForm;
const styles = StyleSheet.create({
mainView: {
backgroundColor: 'white',
flex: 1,
flexDirection: "column",
justifyContent: "center",
padding: 15,
width: "100%",
alignContent: 'center',
alignItems: 'center',
},
header: {
fontFamily: 'Helvetica-Bold',
fontSize: 42,
textAlign: "left",
paddingBottom: 15,
color: '#777',
alignContent: 'center'
},
logo: {
width: 250,
height: 250,
justifyContent: 'center',
alignItems: 'center',
},
input: {
backgroundColor: 'white',
width: "80%"