summaryrefslogtreecommitdiff
path: root/swat
diff options
context:
space:
mode:
authorSimo Sorce <idra@samba.org>2005-06-03 14:05:05 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:17:29 -0500
commit9783b104e6a1e2243d542519e52d4946b725d2b6 (patch)
treeeb2922c019f77d0d49babdf095fef1e798689fc2 /swat
parent4be9b65d770c891e821ba35fa6a2d146a4d50e5a (diff)
downloadsamba-9783b104e6a1e2243d542519e52d4946b725d2b6.tar.gz
samba-9783b104e6a1e2243d542519e52d4946b725d2b6.tar.bz2
samba-9783b104e6a1e2243d542519e52d4946b725d2b6.zip
r7231: remove some old stuff
(This used to be commit 2e3316be9faf696fbb84e0a183de47418d7b9acd)
Diffstat (limited to 'swat')
-rw-r--r--swat/esptest/auth.esp48
1 files changed, 0 insertions, 48 deletions
diff --git a/swat/esptest/auth.esp b/swat/esptest/auth.esp
deleted file mode 100644
index 35953dc7dc..0000000000
--- a/swat/esptest/auth.esp
+++ /dev/null
@@ -1,48 +0,0 @@
-<% page_header("columns", "ESP Authentication Test"); %>
-
-<h1>Samba4 unixAuth test</h1>
-
-<form name="AuthTest" method="POST" action="@@request['SCRIPT_NAME']">
- <input name="submit" type="submit" value="Logout">
- <input name="submit" type="submit" value="Cancel"><br>
- <br>
- Username: <input name="Username" type="text" value=""><br>
- Password: <input name="Password" type="password" value=""><br>
- <br>
- <input name="submit" type="submit" value="Login"><br>
-</form>
-
-<%
- /* if its a post then the user has filled in the form, so
- report the values
- */
-if (request['REQUEST_METHOD'] == "POST") {
- /* if they cancelled then take them back to the list of tests */
- if (form['submit'] == "Cancel") {
- redirect("/");
- }
-
- username = form['Username'];
- password = form['Password'];
-
- if (form['submit'] == "Logout") {
- res = unixAuth("logout", "logout");
- }
-
- if (form['submit'] == "Login") {
- res = unixAuth(username, password);
- if (res != 0) {
- write ("<br>Unsuccessful authentication\n");
- } else {
- write ("<br>Successfully authenticated\n");
- }
- }
-}
-
-write ("<br>AUTHENTICATED = " + session['AUTHENTICATED'] + "\n");
-write ("<br>USERNAME = " + session['USERNAME'] + "\n");
-write ("<br>PRIVILEGE = " + session['PRIVILEGE'] + "\n");
-
-%>
-
-<% page_footer(); %>