Google chrome auto fill

I created a simple form fname, lname, address, city, state, zip
when I run the form and I click the first field fname, google chrome auto fill suggested fill of dates, when I click address chrome wants to fill my name, when I click city it want to fill address…

What am I doing wrong?

This is the way to do it in HTML, you can do it in a blank app

<form>
  <div>
    <label for="address-one">Address line</label>
    <input autocomplete="address-line1" required type="text" id="address-one" name="address-one">
  </div>
  <div>
    <label for="city">City</label>
    <input autocomplete="address-level2" required type="text" id="city" name="city">
  </div>
  <div>
    <label for="state">State / Province / Region (optional)</label>
    <input autcomplete="address-level1" type="text" id="state" name="state">
  </div>
  <div>
 <label for="zip">ZIP / Postal code (optional)</label>
    <input autocomplete="postal-code" type="text" id="zip" name="zip">
  </div>
  <div>
 <label for="country">Country</label>
    <input autocomplete="country" type="text" id="country" name="country">
  </div>
  <button>Save address</button>
</form>
1 Like

Thanks but doing it in a blank app would make it harder over all for the rest of the pages design… I have created other similar form and they auto fill normally… there is something different about this new form I created…