Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
copy the value of the disabled field into a hidden field onsubmit
<!-- display username field to user, they can't change it -->
<input name="username2" value="fred" disabled="disabled" />
<!-- The real value is hidden -->
<input type="hidden" name="username" value="fred">