Last active
May 24, 2021 00:10
-
-
Save pronayguha13/13525ce55552e52d3e457ec07ef544fe to your computer and use it in GitHub Desktop.
not working autocomplete with nope
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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