root/trunk/examples/templates/example_renderer_string.html

Revision 117, 0.7 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 <html>
2 <head>
3     <title>patForms String Renderer Example</title>
4     <style>
5     TABLE.login{
6         border:solid 1px #000000;
7     }
8     TD.head{
9         background-color:#000000;
10         color:#ffffff;
11         font-weight:bold;
12         padding-left:8px;
13     }
14     </style>
15 </head>
16 <body>
17
18 {PATFORMS_FORM_MYFORM_START}
19
20 <table border="0" cellpadding="3" cellspacing="0" class="login">
21     <tr>
22         <td colspan="3" class="head"><b>Login</b></td>
23     </tr>
24     <tr>
25         <td>{PATFORMS_ELEMENT_USER_TITLE}</td>
26         <td>&nbsp;:&nbsp;</td>
27         <td>{PATFORMS_ELEMENT_USER}</td>
28     </tr>
29     <tr>
30         <td>{PATFORMS_ELEMENT_PASS_TITLE}</td>
31         <td>&nbsp;:&nbsp;</td>
32         <td>{PATFORMS_ELEMENT_PASS}</td>
33     </tr>
34 </table><br>
35
36 <input type="submit" name="save" value="Save form"/><br><br>
37
38 {PATFORMS_FORM_MYFORM_END}
39
40 </body>
41 </html>
Note: See TracBrowser for help on using the browser.