diff options
Diffstat (limited to 'shorewall-confirmation-html.lsp')
-rw-r--r-- | shorewall-confirmation-html.lsp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/shorewall-confirmation-html.lsp b/shorewall-confirmation-html.lsp index c0e6268..8cef35e 100644 --- a/shorewall-confirmation-html.lsp +++ b/shorewall-confirmation-html.lsp @@ -1,4 +1,4 @@ -<? local view = ... ?> +<% local view = ... %> <h1>SECURITY CONFIRMATION</h1> @@ -9,29 +9,29 @@ <DL> <DT>Undo and go back</dt> -<DD><form name="undo" action="<?= view.url ?>" method="POST"> +<DD><form name="undo" action="<%= view.url %>" method="POST"> <input type=submit class="submit" name="confirm" value="Back"> </form></DD> </DL> <dl> <dt>Preform check of configs</dt> -<dd><form name="check" action="<?= view.url .. "/check" ?>" method="POST"><input type=submit name="check" value="check" class="submit"></form></dd> +<dd><form name="check" action="<%= view.url .. "/check" %>" method="POST"><input type=submit name="check" value="check" class="submit"></form></dd> </dl> -<? if (view.previousaction) then ?> +<% if (view.previousaction) then %> <DL> <dt>Confirm action</dt> <DD> <form name="confirm" action="" method="POST"> - <input type=submit class="submit" name="confirm" value="<?= view.previousaction ?>"> + <input type=submit class="submit" name="confirm" value="<%= view.previousaction %>"> </form> </DD> </DL> -<? elseif (view.startstop) and (view.startstop.cmdresult) then ?> +<% elseif (view.startstop) and (view.startstop.cmdresult) then %> <DL> <DT>Result of previous action</DT> - <DD><pre><?= view.startstop.cmdresult ?></pre></DD> + <DD><pre><%= view.startstop.cmdresult %></pre></DD> </DL> -<? end ?> +<% end %> |