Skip to content

Instantly share code, notes, and snippets.

@pronayguha13
Last active May 24, 2021 00:10
Show Gist options
  • Save pronayguha13/13525ce55552e52d3e457ec07ef544fe to your computer and use it in GitHub Desktop.
Save pronayguha13/13525ce55552e52d3e457ec07ef544fe to your computer and use it in GitHub Desktop.
not working autocomplete with nope
<form autocomplete="off" id="input-area">
<div class="input-section">
<label for="name">Name</label>
<input
type="text"
id="userNameInput"
placeholder="Enter your name"
required
autocomplete="unInput"
/>
</div>
<div class="input-section">
<label for="email">Email</label>
<input
type="email"
id="userMailInput"
placeholder="Enter you email-id"
required
autocomplete="nope"
/>
</div>
<div class="input-section">
<label for="Password">Pasword</label>
<input
type="password"
id="pwdInput"
placeholder="Enter password..."
required
autocomplete="new-password"
/>
</div>
<div class="input-section">
<label for="address">Address</label>
<input
type="text"
id="usrAddrInput"
placeholder="Enter house/flat/apartment"
autocomplete="nope"
/>
</div>
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment