Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> <style> input:not[type="submit"] { background-color: #ffffff; border: 1px solid #cccccc; padding: 5px; } input:-webkit-autofill { -webkit-box-shadow: 0 0 0 1000px white inset !important; } .hidden { display: none; } </style> </head> <body> <form autocomplete="off" method="post" action="/form/submit"> <input autocomplete="false" name="hidden" type="text" class="hidden"> <div> <label for="name">Name <input type="text" name="name" Id="name" placeholder="Enter Your Name"> </label> </div> <br/> <div> <label for="email">Email <input type="Email" name="email" Id="email" placeholder="Enter Your Email"> </label> </div> <br/> <input type="submit" value="Submit"> </form> </body> </html>