root/trunk/examples/templates/example_parser_ns_auto.fhtml

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