Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature currently requires accessing the site using the built-in Safari browser.
<head>
<script language="JavaScript" type="text/javascript">
<!--
function pruefen() {
if ( document.formular.test1.value == "" ) {
alert("Bitte füllen sie das Feld aus");
return false;
}
.........
}
//-->
</script>
</head>
<body>
<form name="formular" action="mailto:" method="post" [color=red] onSubmit="return pruefen()"[/color]>
<input name="test1" type="text" size="20" value="">
<input name="test2" type="text" .....>
.......
<input type="submit" value="Abschicken">
</form>
</body>