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.
<input type=hidden name=currentDate value=''>
<script language=javascript>
var now = new Date();
var str = '';
str += now.getMonth() + '/';
str += now.getDate() + '/';
str += now.getFullYear();
formName.currentDate.value = str;
</script>