Search code examples
reactjs

Remove manage password autofill from text box


enter image description hereI am new to react js,I see the manage password autofill on my forgot password textbox(google chrome browser),i dont want to show the manage password autofill to user

i have set autoComplete="off" for respective textbox but i still see manage password autofill

<input className="form-control" id="email2" name="emailidOne" type="text" placeholder="forget password" value={this.state.fields.emailid} autoComplete="off" onChange={this.handleChange} />

i dont want to show manage password autofill(chrome browser) on respective texbox


Solution

  • <input className="form-control" id="email2" name="emailidOne" type="text" placeholder="forget password" value={this.state.fields.emailid} autoComplete="no-password" onChange={this.handleChange} />