1
2
<html lang="en">
3
<head>
4
<title>HTML Forms</title>
5
</head>
6
<body>
7
<h1>without autocomplete </h1>
8
<form action="/login" method="get" autocomplete="on">
9
<label for="fname">First name:</label><br>
10
<input type="text" id="fname" name="fname"><br>
11
<label for="lname">Last name:</label><br>
12
<input type="text" id="lname" name="lname"><br><br>
13
<input type="submit" value="Submit">
14
</form>
15
</body>
16
</html>