blob: 35953dc7dc3532a893124599b4cea1015af520a6 (
plain)
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
|
<% 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(); %>
|