crop_rotate
Run
<!DOCTYPE html> <html lang="en"> <head> <title>HTML Forms</title> </head> <body> <h1>without autocomplete </h1> <form action="/login" method="get" autocomplete="on"> <label for="fname">First name:</label><br> <input type="text" id="fname" name="fname"><br> <label for="lname">Last name:</label><br> <input type="text" id="lname" name="lname"><br><br> <input type="submit" value="Submit"> </form> </body> </html>
HTML Forms
without autocomplete
First name:
Last name: