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
|
<html>
<head>
<title>Test Website</title>
</head>
<body>
<h1>Test Website</h1>
<ul>
<li><a href="doc/index.html">libpion documentation</a>
<li><a href="hello">Hello World service</a>
<li><a href="echo">Echo request information</a>
<li><a href="cookie">Cookie service</a>
<li><a href="log">Log event service</a>
</ul>
<hr/>
<h3>Demonstration of Authentication interface</h3>
<ul>
<li><a href="auth/basic">Basic Authentication </a> (use stas/123456 or mike/123456)
<li><a href="auth/cookie">Cookie Authentication </a>
<ul>
<li>login <a href="login?user=mike&pass=123456&url=/index.html">mike/123456</a>
<li><a href="logout?url=/index.html">logout</a>
</ul>
</ul>
</body>
</html>
|