root/oss/picket/whoami.xsl

Revision 5, 0.5 kB (checked in by sylvain, 3 years ago)

First import of picket and httpauthfilter

Line 
1 <?xml version="1.0" encoding="ISO-8859-1"?>
2
3 <xsl:stylesheet version="1.0"
4 xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
5
6 <xsl:output method="html" indent="yes" />
7
8 <xsl:template match="*">
9   <html>
10     <head></head>
11     <body>
12       <div align="left">
13         <form action="/sayHello" method="get">
14           What's your name?
15           <input type="text" size="10" maxlength="30" name="name"/>
16           <input type="submit" />
17         </form>
18       </div>
19     </body>
20   </html>
21 </xsl:template>
22
23 </xsl:stylesheet>
Note: See TracBrowser for help on using the browser.