|
Revision 117, 1.0 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 |
TD.descr{ |
|---|
| 15 |
padding-bottom:8px; |
|---|
| 16 |
} |
|---|
| 17 |
I{ |
|---|
| 18 |
color:#666666; |
|---|
| 19 |
} |
|---|
| 20 |
</style> |
|---|
| 21 |
</head> |
|---|
| 22 |
<body> |
|---|
| 23 |
|
|---|
| 24 |
{PATFORMS_FORM_MYFORM_START} |
|---|
| 25 |
|
|---|
| 26 |
<table border="0" cellpadding="3" cellspacing="0" class="login"> |
|---|
| 27 |
<tr> |
|---|
| 28 |
<td colspan="4" class="head"><b>Login</b></td> |
|---|
| 29 |
</tr> |
|---|
| 30 |
<tr> |
|---|
| 31 |
<td>{PATFORMS_ELEMENT_USER_TITLE}</td> |
|---|
| 32 |
<td> : </td> |
|---|
| 33 |
<td>{PATFORMS_ELEMENT_USER}</td> |
|---|
| 34 |
<td>ID: {PATFORMS_ELEMENT_USER_ID}</td> |
|---|
| 35 |
</tr> |
|---|
| 36 |
<tr> |
|---|
| 37 |
<td colspan="4" class="descr"><i>{PATFORMS_ELEMENT_USER_DESCRIPTION}</i></td> |
|---|
| 38 |
</tr> |
|---|
| 39 |
<tr> |
|---|
| 40 |
<td>{PATFORMS_ELEMENT_PASS_TITLE}</td> |
|---|
| 41 |
<td> : </td> |
|---|
| 42 |
<td>{PATFORMS_ELEMENT_PASS}</td> |
|---|
| 43 |
<td>ID: {PATFORMS_ELEMENT_PASS_ID}</td> |
|---|
| 44 |
</tr> |
|---|
| 45 |
<tr> |
|---|
| 46 |
<td colspan="4" class="descr"><i>{PATFORMS_ELEMENT_PASS_DESCRIPTION}</i></td> |
|---|
| 47 |
</tr> |
|---|
| 48 |
</table><br> |
|---|
| 49 |
|
|---|
| 50 |
<input type="submit" name="save" value="Save form"/><br><br> |
|---|
| 51 |
|
|---|
| 52 |
{PATFORMS_FORM_MYFORM_END} |
|---|
| 53 |
|
|---|
| 54 |
</body> |
|---|
| 55 |
</html> |
|---|