diff options
Diffstat (limited to 'squid-advanced-html.lsp')
-rw-r--r-- | squid-advanced-html.lsp | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/squid-advanced-html.lsp b/squid-advanced-html.lsp index f65a19b..5366eac 100644 --- a/squid-advanced-html.lsp +++ b/squid-advanced-html.lsp @@ -13,23 +13,27 @@ ?> <h1>Web Proxy Configuration</h1> <p> +<dl> <dt> - <div style="color: #ff2020; font-weight: bold;">WARNING:</div><br> + <div class="attention">WARNING:</div><br> Modifying the web proxy configuration file is generally not necessary. You must be familiar with the configuration file before proceeding. </dt> +</dl> </p> <h2>Status</h2> <form action="" method="POST"> +<dl> <dt>squid is: <? io.write( service.status ) ?> </dt> -<dd><input class="submit" type="submit" name="srvcmd" value="start" <? io.write( srv1fill ) ?> style="width:100px"> -<input class="submit" type="submit" name="srvcmd" value="stop" <? io.write( srv2fill ) ?> style="width:100px"> -<input class="submit" type="submit" name="srvcmd" value="restart" <? io.write( srv2fill ) ?> style="width:100px"></dd> +<dd><input class="submit" type="submit" name="srvcmd" value="start" <? io.write( srv1fill ) ?>> +<input class="submit" type="submit" name="srvcmd" value="stop" <? io.write( srv2fill ) ?>> +<input class="submit" type="submit" name="srvcmd" value="restart" <? io.write( srv2fill ) ?>></dd> +</dl> </form> <p> -<pre style="color: #ff2020;"><? io.write( service.message ) ?></pre> +<pre class="attention"><? io.write( service.message ) ?></pre> </p> <p> @@ -40,7 +44,7 @@ until you restart the service. <h2>Configuration</h2> <form action="" method="POST"> -<textarea name="config" style="width:100%;"><? io.write( service.config ) ?></textarea> +<textarea name="config"><? io.write( service.config ) ?></textarea> <h3>Save Changes</h3> <dt>Save the contents of the box above</dt><dd><input class="submit" type="submit" name="cmd" value="save"></dd> |