@@ -181,7 +181,7 @@ class Forms extends Component {
181
181
< Label htmlFor = "email-input" > Email Input</ Label >
182
182
</ Col >
183
183
< Col xs = "12" md = "9" >
184
- < Input type = "email" id = "email-input" name = "email-input" placeholder = "Enter Email" />
184
+ < Input type = "email" id = "email-input" name = "email-input" placeholder = "Enter Email" autoComplete = "email" />
185
185
< FormText className = "help-block" > Please enter your email</ FormText >
186
186
</ Col >
187
187
</ FormGroup >
@@ -190,7 +190,7 @@ class Forms extends Component {
190
190
< Label htmlFor = "password-input" > Password</ Label >
191
191
</ Col >
192
192
< Col xs = "12" md = "9" >
193
- < Input type = "password" id = "password-input" name = "password-input" placeholder = "Password" />
193
+ < Input type = "password" id = "password-input" name = "password-input" placeholder = "Password" autoComplete = "new-password" />
194
194
< FormText className = "help-block" > Please enter a complex password</ FormText >
195
195
</ Col >
196
196
</ FormGroup >
@@ -265,7 +265,7 @@ class Forms extends Component {
265
265
< Label htmlFor = "disabledSelect" > Disabled Select</ Label >
266
266
</ Col >
267
267
< Col xs = "12" md = "9" >
268
- < Input type = "select" name = "disabledSelect" id = "disabledSelect" disabled >
268
+ < Input type = "select" name = "disabledSelect" id = "disabledSelect" disabled autoComplete = "name" >
269
269
< option value = "0" > Please select</ option >
270
270
< option value = "1" > Option #1</ option >
271
271
< option value = "2" > Option #2</ option >
@@ -434,7 +434,7 @@ class Forms extends Component {
434
434
< Label htmlFor = "hf-email" > Email</ Label >
435
435
</ Col >
436
436
< Col xs = "12" md = "9" >
437
- < Input type = "email" id = "hf-email" name = "hf-email" placeholder = "Enter Email..." />
437
+ < Input type = "email" id = "hf-email" name = "hf-email" placeholder = "Enter Email..." autoComplete = "email" />
438
438
< FormText className = "help-block" > Please enter your email</ FormText >
439
439
</ Col >
440
440
</ FormGroup >
@@ -443,7 +443,7 @@ class Forms extends Component {
443
443
< Label htmlFor = "hf-password" > Password</ Label >
444
444
</ Col >
445
445
< Col xs = "12" md = "9" >
446
- < Input type = "password" id = "hf-password" name = "hf-password" placeholder = "Enter Password..." />
446
+ < Input type = "password" id = "hf-password" name = "hf-password" placeholder = "Enter Password..." autoComplete = "current-password" />
447
447
< FormText className = "help-block" > Please enter your password</ FormText >
448
448
</ Col >
449
449
</ FormGroup >
@@ -462,12 +462,12 @@ class Forms extends Component {
462
462
< Form action = "" method = "post" >
463
463
< FormGroup >
464
464
< Label htmlFor = "nf-email" > Email</ Label >
465
- < Input type = "email" id = "nf-email" name = "nf-email" placeholder = "Enter Email.." />
465
+ < Input type = "email" id = "nf-email" name = "nf-email" placeholder = "Enter Email.." autoComplete = "email" />
466
466
< FormText className = "help-block" > Please enter your email</ FormText >
467
467
</ FormGroup >
468
468
< FormGroup >
469
469
< Label htmlFor = "nf-password" > Password</ Label >
470
- < Input type = "password" id = "nf-password" name = "nf-password" placeholder = "Enter Password.." />
470
+ < Input type = "password" id = "nf-password" name = "nf-password" placeholder = "Enter Password.." autoComplete = "current-password" />
471
471
< FormText className = "help-block" > Please enter your password</ FormText >
472
472
</ FormGroup >
473
473
</ Form >
@@ -947,7 +947,7 @@ class Forms extends Component {
947
947
< InputGroupAddon addonType = "prepend" >
948
948
< InputGroupText > Username</ InputGroupText >
949
949
</ InputGroupAddon >
950
- < Input type = "text " id = "username3" name = "username3" />
950
+ < Input type = "email " id = "username3" name = "username3" autoComplete = "name" />
951
951
< InputGroupAddon addonType = "append" >
952
952
< InputGroupText > < i className = "fa fa-user" > </ i > </ InputGroupText >
953
953
</ InputGroupAddon >
@@ -958,7 +958,7 @@ class Forms extends Component {
958
958
< InputGroupAddon addonType = "prepend" >
959
959
< InputGroupText > Email</ InputGroupText >
960
960
</ InputGroupAddon >
961
- < Input type = "email" id = "email3" name = "email3" />
961
+ < Input type = "email" id = "email3" name = "email3" autoComplete = "username" />
962
962
< InputGroupAddon addonType = "append" >
963
963
< InputGroupText > < i className = "fa fa-envelope" > </ i > </ InputGroupText >
964
964
</ InputGroupAddon >
@@ -969,7 +969,7 @@ class Forms extends Component {
969
969
< InputGroupAddon addonType = "prepend" >
970
970
< InputGroupText > Password</ InputGroupText >
971
971
</ InputGroupAddon >
972
- < Input type = "password" id = "password3" name = "password3" />
972
+ < Input type = "password" id = "password3" name = "password3" autoComplete = "current-password" />
973
973
< InputGroupAddon addonType = "append" >
974
974
< InputGroupText > < i className = "fa fa-asterisk" > </ i > </ InputGroupText >
975
975
</ InputGroupAddon >
@@ -991,23 +991,23 @@ class Forms extends Component {
991
991
< Form action = "" method = "post" >
992
992
< FormGroup >
993
993
< InputGroup >
994
- < Input type = "text" id = "username2" name = "username2" placeholder = "Username" />
994
+ < Input type = "text" id = "username2" name = "username2" placeholder = "Username" autoComplete = "name" />
995
995
< InputGroupAddon addonType = "append" >
996
996
< InputGroupText > < i className = "fa fa-user" > </ i > </ InputGroupText >
997
997
</ InputGroupAddon >
998
998
</ InputGroup >
999
999
</ FormGroup >
1000
1000
< FormGroup >
1001
1001
< InputGroup >
1002
- < Input type = "email" id = "email2" name = "email2" placeholder = "Email" />
1002
+ < Input type = "email" id = "email2" name = "email2" placeholder = "Email" autoComplete = "username" />
1003
1003
< InputGroupAddon addonType = "append" >
1004
1004
< InputGroupText > < i className = "fa fa-envelope" > </ i > </ InputGroupText >
1005
1005
</ InputGroupAddon >
1006
1006
</ InputGroup >
1007
1007
</ FormGroup >
1008
1008
< FormGroup >
1009
1009
< InputGroup >
1010
- < Input type = "password" id = "password2" name = "password2" placeholder = "Password" />
1010
+ < Input type = "password" id = "password2" name = "password2" placeholder = "Password" autoComplete = "current-password" />
1011
1011
< InputGroupAddon addonType = "append" >
1012
1012
< InputGroupText > < i className = "fa fa-asterisk" > </ i > </ InputGroupText >
1013
1013
</ InputGroupAddon >
@@ -1032,23 +1032,23 @@ class Forms extends Component {
1032
1032
< InputGroupAddon addonType = "prepend" >
1033
1033
< InputGroupText > < i className = "fa fa-user" > </ i > </ InputGroupText >
1034
1034
</ InputGroupAddon >
1035
- < Input type = "text" id = "username " name = "username " placeholder = "Username" />
1035
+ < Input type = "text" id = "username1 " name = "username1 " placeholder = "Username" autoComplete = "name" />
1036
1036
</ InputGroup >
1037
1037
</ FormGroup >
1038
1038
< FormGroup >
1039
1039
< InputGroup >
1040
1040
< InputGroupAddon addonType = "prepend" >
1041
1041
< InputGroupText > < i className = "fa fa-envelope" > </ i > </ InputGroupText >
1042
1042
</ InputGroupAddon >
1043
- < Input type = "email" id = "email " name = "email " placeholder = "Email" />
1043
+ < Input type = "email" id = "email1 " name = "email1 " placeholder = "Email" autoComplete = "username" />
1044
1044
</ InputGroup >
1045
1045
</ FormGroup >
1046
1046
< FormGroup >
1047
1047
< InputGroup >
1048
1048
< InputGroupAddon addonType = "prepend" >
1049
1049
< InputGroupText > < i className = "fa fa-asterisk" > </ i > </ InputGroupText >
1050
1050
</ InputGroupAddon >
1051
- < Input type = "password" id = "password " name = "password " placeholder = "Password" />
1051
+ < Input type = "password" id = "password1 " name = "password1 " placeholder = "Password" autoComplete = "current-password" />
1052
1052
</ InputGroup >
1053
1053
</ FormGroup >
1054
1054
< FormGroup className = "form-actions" >
0 commit comments