root/trunk/examples/templates/example_parser_options.fhtml

Revision 117, 1.3 kB (checked in by argh, 4 years ago)

Massive update of the examples collection; added the patExampleGen examples framework; commented all examples; reworked all the templates...

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1 <patForms:Form name="foo">
2
3 <div class="piFrame">
4     <div class="piTitle">Area login</div>
5     <div class="piContent">
6        
7         <div class="piAbstract">
8             Please provide your credentials here to log into an area of your choice.
9         </div>
10        
11         <table border="0" cellpadding="2" cellspacing="0">
12             <tr>
13                 <td>Username</td>
14                 <td>
15                     <table cellpadding="0" cellspacing="0" border="0">
16                         <tr>
17                             <td><patForms:String name="username" required="yes" description="Please enter your name here" size="8" maxlength="8" accesskey="U" /></td>
18                             <td>&nbsp;Password&nbsp;</td>
19                             <td><patForms:String name="password" type="password" required="yes" size="6" maxlength="6" accesskey="P" /></td>
20                             <td>&nbsp;Area&nbsp;</td>
21                             <td>
22                                 <patForms:Enum name="area" required="yes">
23                                     <patForms:Option value="" label="Please select an area..."/>
24                                     <patForms:Option value="1" label="Secluded area"/>
25                                     <patForms:Option value="2">Hidden area</patForms:Option>
26                                     <patForms:Option value="3">Secret area</patForms:Option>
27                                     <patForms:Option value="4">Immaterial area</patForms:Option>
28                                 </patForms:Enum>
29                             </td>
30                         </tr>
31                     </table>
32                 </td>
33             </tr>
34         </table>
35     </div>
36 </div>
37
38 <input type="submit" name="save" value="Save" accesskey="S" />
39
40 </patForms:Form>
Note: See TracBrowser for help on using the browser.