|
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 |
{ARGH_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>{ARGH_ELEMENT_USER_TITLE}</td> |
|---|
| 26 |
<td> : </td> |
|---|
| 27 |
<td>{ARGH_ELEMENT_USER}</td> |
|---|
| 28 |
</tr> |
|---|
| 29 |
<tr> |
|---|
| 30 |
<td>{ARGH_ELEMENT_PASS_TITLE}</td> |
|---|
| 31 |
<td> : </td> |
|---|
| 32 |
<td>{ARGH_ELEMENT_PASS}</td> |
|---|
| 33 |
</tr> |
|---|
| 34 |
</table><br> |
|---|
| 35 |
|
|---|
| 36 |
<input type="submit" name="save" value="Save form"/><br><br> |
|---|
| 37 |
|
|---|
| 38 |
{ARGH_FORM_MYFORM_END} |
|---|
| 39 |
|
|---|
| 40 |
</body> |
|---|
| 41 |
</html> |
|---|