|
@@ -308,6 +308,7 @@ export default class RegisterV4 extends React.Component {
|
|
|
<TextInput
|
|
<TextInput
|
|
|
style={styles.inputView}
|
|
style={styles.inputView}
|
|
|
placeholder='Display Name'
|
|
placeholder='Display Name'
|
|
|
|
|
+ placeholderTextColor={textPlacehoder}
|
|
|
maxLength={50}
|
|
maxLength={50}
|
|
|
onChangeText={v => this.changeInfo('nickName', v)}
|
|
onChangeText={v => this.changeInfo('nickName', v)}
|
|
|
/>
|
|
/>
|
|
@@ -317,6 +318,7 @@ export default class RegisterV4 extends React.Component {
|
|
|
<TextInput
|
|
<TextInput
|
|
|
style={styles.inputView}
|
|
style={styles.inputView}
|
|
|
placeholder='Email Address'
|
|
placeholder='Email Address'
|
|
|
|
|
+ placeholderTextColor={textPlacehoder}
|
|
|
maxLength={50}
|
|
maxLength={50}
|
|
|
keyboardType="email-address"
|
|
keyboardType="email-address"
|
|
|
textContentType='emailAddress'
|
|
textContentType='emailAddress'
|
|
@@ -328,6 +330,7 @@ export default class RegisterV4 extends React.Component {
|
|
|
<TextInput
|
|
<TextInput
|
|
|
style={[styles.inputView, {flex: 2.2, marginLeft: 2}]}
|
|
style={[styles.inputView, {flex: 2.2, marginLeft: 2}]}
|
|
|
placeholder='OTP'
|
|
placeholder='OTP'
|
|
|
|
|
+ placeholderTextColor={textPlacehoder}
|
|
|
maxLength={6}
|
|
maxLength={6}
|
|
|
keyboardType="number-pad"
|
|
keyboardType="number-pad"
|
|
|
textContentType="telephoneNumber"
|
|
textContentType="telephoneNumber"
|
|
@@ -374,6 +377,7 @@ export default class RegisterV4 extends React.Component {
|
|
|
<TextInput
|
|
<TextInput
|
|
|
style={styles.contactView}
|
|
style={styles.contactView}
|
|
|
placeholder='Mobile Number'
|
|
placeholder='Mobile Number'
|
|
|
|
|
+ placeholderTextColor={textPlacehoder}
|
|
|
keyboardType='phone-pad'
|
|
keyboardType='phone-pad'
|
|
|
maxLength={15}
|
|
maxLength={15}
|
|
|
onChangeText={v => this.changeInfo('phone', v)}
|
|
onChangeText={v => this.changeInfo('phone', v)}
|
|
@@ -386,6 +390,7 @@ export default class RegisterV4 extends React.Component {
|
|
|
secureTextEntry={this.state.wrongCount < 3}
|
|
secureTextEntry={this.state.wrongCount < 3}
|
|
|
style={styles.inputView}
|
|
style={styles.inputView}
|
|
|
placeholder='Password'
|
|
placeholder='Password'
|
|
|
|
|
+ placeholderTextColor={textPlacehoder}
|
|
|
maxLength={20}
|
|
maxLength={20}
|
|
|
onChangeText={(value) => {
|
|
onChangeText={(value) => {
|
|
|
this.applyStrength(value);
|
|
this.applyStrength(value);
|
|
@@ -404,6 +409,7 @@ export default class RegisterV4 extends React.Component {
|
|
|
secureTextEntry={this.state.wrongCount < 3}
|
|
secureTextEntry={this.state.wrongCount < 3}
|
|
|
style={styles.inputView}
|
|
style={styles.inputView}
|
|
|
placeholder='Password'
|
|
placeholder='Password'
|
|
|
|
|
+ placeholderTextColor={textPlacehoder}
|
|
|
maxLength={20}
|
|
maxLength={20}
|
|
|
onChangeText={v => this.changeInfo('password', v)}
|
|
onChangeText={v => this.changeInfo('password', v)}
|
|
|
/>
|
|
/>
|
|
@@ -430,6 +436,7 @@ export default class RegisterV4 extends React.Component {
|
|
|
<TextInput
|
|
<TextInput
|
|
|
style={styles.inputView}
|
|
style={styles.inputView}
|
|
|
placeholder='PH Driver Vocational Licence'
|
|
placeholder='PH Driver Vocational Licence'
|
|
|
|
|
+ placeholderTextColor={textPlacehoder}
|
|
|
maxLength={20}
|
|
maxLength={20}
|
|
|
onChangeText={v => this.changeInfo('pdvLicence', v)}
|
|
onChangeText={v => this.changeInfo('pdvLicence', v)}
|
|
|
/>
|
|
/>
|
|
@@ -461,6 +468,7 @@ export default class RegisterV4 extends React.Component {
|
|
|
style={styles.codeText}
|
|
style={styles.codeText}
|
|
|
maxLength={6}
|
|
maxLength={6}
|
|
|
placeholder='Referral Code'
|
|
placeholder='Referral Code'
|
|
|
|
|
+ placeholderTextColor={textPlacehoder}
|
|
|
onChangeText={v => this.changeInfo('referralCode', v)}
|
|
onChangeText={v => this.changeInfo('referralCode', v)}
|
|
|
/>
|
|
/>
|
|
|
</View>
|
|
</View>
|