diff options
Diffstat (limited to 'swat/esptest/session.esp')
-rw-r--r-- | swat/esptest/session.esp | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/swat/esptest/session.esp b/swat/esptest/session.esp index e1d6a6370d..3d787012c6 100644 --- a/swat/esptest/session.esp +++ b/swat/esptest/session.esp @@ -1,8 +1,5 @@ -<HTML> -<TITLE> -Samba4 ESP test -</TITLE> -<BODY> +<% page_header("columns", "ESP session test"); %> + <h1>Samba4 session test</h1> <form name="SessionTest" method="POST" action="@@request['SCRIPT_NAME']"> @@ -22,7 +19,7 @@ Samba4 ESP test if (request['REQUEST_METHOD'] == "POST") { /* if they cancelled then take them back to the list of tests */ if (form['submit'] == "Cancel") { - redirect("index.esp"); + redirect("/"); } name = form['Name']; @@ -61,5 +58,4 @@ showArray("session", session); write("SessionId=" + request['SESSION_ID'] + "<br>\n"); %> -</BODY> -</HTML> +<% page_footer(); %> |