What is the purpose of disabled in the following code snippet?
disabled
<input type="text" name="username" disabled>
The input field will only accept alphabetical characters.
Temporarily disables the input field so it cannot be modified.
Makes the input field mandatory.
Hides the input field on the page.