Corrections
continuous-integration/drone/push Build is passing Details

Persistance
Alban GUILHOT 2 years ago
parent 37fe61e6da
commit 01290170d2

@ -18,7 +18,7 @@ import Conversation from '../screens/Conversation'
import Test from '../screens/Test'
import MatchMaking from '../screens/MatchMaking'
import TicTacToe from '../Games/Tic-Tac-Toe/Tic-Tac-Toe'
import TicTacToe from '../Games/Tic-Tac-Toe/tic-tac-toe'
const HomeStack = createStackNavigator();

@ -83,7 +83,7 @@ function SignUp(props: { navigation: any; }) {
break;
case (errorList.invalidPassword):
Alert.alert("Votre pseudo doit contenir au moins une majuscule, une majuscule, un chiffre et un caractère spécial (#?!@$%^&*-)");
Alert.alert("Votre password doit contenir au moins une majuscule, une majuscule, un chiffre et un caractère spécial (#?!@$%^&*-)");
dispatch(updateInvalidPassword(false));
break;
@ -99,7 +99,7 @@ function SignUp(props: { navigation: any; }) {
<View style={{width: '60%', alignItems: 'center'}}>
<Text style={styles.text}>Login</Text>
<TextInput style={styles.textInput} placeholder='Login' onChangeText={(val) => setPseudo(val)} autoCapitalize='none' />
<TextInput style={styles.textInput} placeholder='Login' onChangeText={(val) => setPseudo(val)} autoCapitalize='none'/>
</View>
<View style={{width: '60%', alignItems: 'center'}}>

@ -6,7 +6,8 @@ export default StyleSheet.create({
width: '100%',
height: '5%',
backgroundColor: 'white',
padding: 10,
color:'black',
padding: 20,
marginTop: 10,
},
button: {

Loading…
Cancel
Save