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.
<script language="Javascript">
<!--
var today = new Date()
var month = today.getMonth() + 1
var day = today.getDate()
var year = today.getFullYear()
var s = "/"
function insDate(){
document.forms.form1.myDate.value = day + s + month + s + year
}
//-->
</script>
<form name="form1" method="post" action="">
<p>
<input name="myCheck" type="checkbox" id="myCheck" value="checkbox" onClick="insDate()">
</p>
<p>
<input name="myDate" type="text" id="myDate">
</p>
</form>