HTML Code
<!--ใส่แอทริบิวท์ autocomplete="off" ในแท็ก form เพื่อกำหนดให้บราวเซอร์ไม่ต้องจำค่า ข้อมูลการล็อกอิน--> <form id="form1" name="form1" method="post" action="" autocomplete="off"> Username: <!--ใส่แอทริบิวท์ autocomplete="off" ในแท็ก input text เพื่อกำหนดให้บราวเซอร์ไม่ต้องจำค่าข้อความใน input text นั้นๆ --> <input name="username" type="text" id="username" autocomplete="off" /> <br /> Password: <input name="password" type="password" id="password" /> <br /> <input type="submit" name="Submit" value="Submit" /> </form>