Fix position and remove autocomplete

This commit is contained in:
Cédric FAMIBELLE-PRONZOLA
2022-02-06 19:03:12 +04:00
parent 7ba4a264d3
commit 23e5d56648
+2 -4
View File
@@ -280,11 +280,10 @@ function Koneksyon({chimen}) {
</Button> </Button>
</TabPanel> </TabPanel>
<TabPanel value={value} index={1}> <TabPanel value={value} index={1}>
<FormControl fullWidth style={{marginTop: '1em'}}> <FormControl fullWidth>
<InputLabel htmlFor='register-email'>Email</InputLabel> <InputLabel htmlFor='register-email'>Email</InputLabel>
<Input <Input
value={registerCredentials.email} value={registerCredentials.email}
autoComplete='email'
name='register-email' name='register-email'
type='email' type='email'
id='register-email' id='register-email'
@@ -292,11 +291,10 @@ function Koneksyon({chimen}) {
onKeyUp={handleKeyUpRegister} onKeyUp={handleKeyUpRegister}
/> />
</FormControl> </FormControl>
<FormControl fullWidth> <FormControl fullWidth style={{marginTop: '1em'}}>
<InputLabel htmlFor='register-username'>Nom dutilisateur</InputLabel> <InputLabel htmlFor='register-username'>Nom dutilisateur</InputLabel>
<Input <Input
value={registerCredentials.username} value={registerCredentials.username}
autoComplete='username'
name='register-username' name='register-username'
type='text' type='text'
id='register-username' id='register-username'