How can the name field be disabled in the following form?
<form action="process.php" method="POST">
<label for="name">Name:</label>
<input type="text" id="name" name="name">
<button type="submit">Send</button>
</form>
How can the name field be disabled in the following form?
<form action="process.php" method="POST">
<label for="name">Name:</label>
<input type="text" id="name" name="name">
<button type="submit">Send</button>
</form>