-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathScrnSignup.js
More file actions
36 lines (36 loc) · 1006 Bytes
/
ScrnSignup.js
File metadata and controls
36 lines (36 loc) · 1006 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import React, {Component} from 'react';
import {Input, View} from 'native-base';
import Guard from './Guard';
export default class ScrnSignup extends Component {
constructor(props) {
super(props);
this.state = {
first_name: '',
last_name: ''
};
}
render() {
return (
<View>
<Input
placeholder="Spaceplease astroenter your spacefirst spacename"
onChangeText={first_name => this.setState({first_name})}
value={this.state.first_name}
/>
<Input
placeholder="Spaceplease astroenter your spacelast spacename"
onChangeText={last_name => this.setState({last_name})}
value={this.state.last_name}
/>
<Guard
buttonText="create a spaceaccount"
endPoint="user"
error500="sign up"
firstName={this.state.first_name}
lastName={this.state.last_name}
navigation={this.props.navigation}
/>
</View>
);
}
}