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.
#!/usr/bin/perl
print "Content-type: text/html\n\n";
my $var = "This is my alert";
print <<this
<html>
<head>
<script type="text/javascript" language="JavaScript">
function varalert()
{
alert("$var");
}
</script>
</head>
<body>
<form name="trafficcomplaint" onSubmit="return varalert()">
<input type="submit" value="Alert Me">
</form>
</body>
</html>
this