mirror of
https://github.com/samba-team/samba.git
synced 2025-01-29 21:47:30 +03:00
24 lines
382 B
HTML
24 lines
382 B
HTML
<%
|
|
var tests = new Array("formtest", "showvars", "include");
|
|
%>
|
|
|
|
<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>
|