Auto Complete <| HTML <| Web Labs

Not set autocomplete
      
        <input type="text" >
        <input type="password">
      
    
Set autocomplete Off
      
        <input type="text" name="name" autocomplete="off">
        <input type="password" name="password" autocomplete="off">
      
    
Set autocomplete attr
      
        <form>
          <input type="text" placeholder="username" autocomplete="username">
          <input type="password" placeholder="password" autocomplete="current-password">
        </form>
      
    
Sign up
      
        <input type="text" placeholder="username" autocomplete="username">
        <input type="password" placeholder="new-password" autocomplete="new-password">
        <input type="password" placeholder="new-password" autocomplete="new-password">
      
    
Password Change
      
        <input type="text" placeholder="username" autocomplete="username" value="web-labs@shootacean.com" style="display: none">
        <input type="password" placeholder="current-password" autocomplete="current-password">
        <input type="password" placeholder="new-password" autocomplete="new-password">
        <input type="password" placeholder="new-password" autocomplete="new-password">
      
    

User Data

User Data

region, locality is deprecated.

      
        <input type="text" placeholder="Full Name" autocomplete="name">
        <input type="email" placeholder="email" autocomplete="email">
        <input type="text" placeholder="birthday" autocomplete="bday">
        <input type="text" placeholder="birthday year" autocomplete="bday-year">
        <input type="text" placeholder="birthday month" autocomplete="bday-month">
        <input type="text" placeholder="birthday day" autocomplete="bday-day">
        <input type="text" placeholder="sex" autocomplete="sex">
        <input type="text" placeholder="tel" autocomplete="tel">
        <input type="text" placeholder="country" autocomplete="shipping country">
        <input type="text" placeholder="country name" autocomplete="shipping country-name">
        <input type="text" placeholder="postal code" autocomplete="shipping postal-code">
        <input type="text" placeholder="address-level1" autocomplete="shipping address-level1">
        <input type="text" placeholder="address-level2" autocomplete="shipping address-level2">
        <input type="text" placeholder="address-level3" autocomplete="shipping address-level3">
        <input type="text" placeholder="address-level4" autocomplete="shipping address-level4">
        <input type="text" placeholder="street address" autocomplete="shipping street-address">
        <input type="text" placeholder="address line 1" autocomplete="shipping address-line1">
        <input type="text" placeholder="address line 2" autocomplete="shipping address-line2">
        <input type="text" placeholder="address line 3" autocomplete="shipping address-line3">
        <p>region, locality is deprecated.</p>
        <input type="text" placeholder="region" autocomplete="shipping region">
        <input type="text" placeholder="locality" autocomplete="shipping locality">
      
    
Credit Card
      
        <input type="text" placeholder="cc-name" autocomplete="cc-name">
        <input type="text" placeholder="cc-number" autocomplete="cc-number">
        <input type="text" placeholder="cc-csc" autocomplete="cc-csc">
        <input type="text" placeholder="cc-exp-month" autocomplete="cc-exp-month">
        <input type="text" placeholder="cc-exp-year" autocomplete="cc-exp-year">