summaryrefslogtreecommitdiff
path: root/swat/html/esptest/index.html
blob: 957e7d94fa7c9fcfb5853e69eb5ff8cbc5513715 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<%
  var tests = new Array("formtest", "showvars");
%>

<HTML>
<TITLE>
Samba4 ESP test
</TITLE>
<BODY>
<img src="/images/logo.png" alt="Samba">
<h1>Samba4 ESP test</h1>

Please choose one of the following tests:
<ul>
<%
  for (test in tests) {
     url = tests[test] + ".html";
     write("<li> <a href=" + url + ">" + tests[test] + "</a>");
  }
%>
</ul>
</BODY>
</HTML>