HTML Code
1 2 3 4 5 6 7 8 9 10 11 | <!--ใส่แอทริบิวท์ 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 > |