I have input
in a form, but it should not have its value changed:
<input type="text" name="pais" value="">
How can I prevent the value from being changed?
<!DOCTYPE html>
<html>
<body>
<form action="/action_page.php">
Pais: <input type="text" name="pais" value=""><br>
Estado: <input type="text" name="estado" value=""><br>
<input type="submit" value="Submit">
</form>
</body>
</html>