1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<HTML>
<!--
Available WWWOFFLE Variables (all with a '$' prefix).
localhost = The hostname of the server running wwwoffled (='$localhost').
url = The URL that was asked for (='$url').
interval = The interval between being monitored (='$interval').
-->
<HEAD>
<TITLE>WWWOFFLE - Will Monitor $url</TITLE>
</HEAD>
<BODY>
<H1 align=center>WWWOFFLE Monitor Request Recorded</H1>
<p align=center>
Your request for URL
<br>
<b><tt>$url</tt></b>
<br>
will be monitored every $interval days.
</p>
<!--
Useful WWWOFFLE Buttons
$Cancel = http://$localhost/control/delete-mon/?$url
$Refresh = http://$localhost/refresh/?$url
$Options = http://$localhost/refresh-options/?$url
$Monitor = http://$localhost/monitor-options/?$url
$Index = http://$localhost/index/url/?$url
-->
<p align=center>
[<a href="$Cancel">Cancel</a>|Refresh:<a href="$Options">Options</a>|<a href="$Monitor">Monitor</a>|<a href="$Index">Index</a>]
</p>
</BODY>
</HTML>
|