- Stuff and things for registration!

This commit is contained in:
Mike Fitzpatrick
2019-08-07 10:21:30 -04:00
parent 3dc8589fb4
commit b8ea813a77
2 changed files with 47 additions and 10 deletions

View File

@@ -30,15 +30,18 @@ export default function LocalLogin({ doLoginAction }) {
return (
<View style={styles.loginWrap}>
<TextInput
style={{height: 40}}
placeholder="email"
keyboardType="email-address"
onChangeText={(text) => _updateState('username', text)}
placeholder="email"
style={{height: 40}}
value={username}
/>
<TextInput
style={{height: 40}}
placeholder="password"
enablesReturnKeyAutomatically
onChangeText={(text) => _updateState('password', text)}
placeholder="password"
secureTextEntry
style={{height: 40}}
value={password}
/>
<Button