Login   Register  
PHP Classes
elePHPant
Icontem

File: Form/index.tpl

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Arkadiusz Malinski  >  am_Forms  >  Form/index.tpl  >  Download  
File: Form/index.tpl
Role: Auxiliary data
Content type: text/plain
Description: Smarty template to example
Class: am_Forms
Generate and validate Web forms
Author: By
Last change:
Date: 2006-10-31 14:17
Size: 877 bytes
 

Contents

Class file image Download
<html>
<heaD>
<title>test form class</title>
</head>
<body>
	{$accountForm.Begin}
	<table border="0" width="100%">
		<tr>
			<td width="30%" align="right">Name & Surname:</td>
			<td width="70%" align="left">{$accountForm.Fields.name}</td>
		</tr>
		<tr>
			<td width="30%" align="right">Phone no:</td>
			<td width="70%" align="left">{$accountForm.Fields.phone}</td>
		</tr>
		<tr>
			<td width="30%" align="right">e-mail:</td>
			<td width="70%" align="left">{$accountForm.Fields.email}</td>
		</tr>
		<tr>
			<td width="30%" align="right">e-mail again:</td>
			<td width="70%" align="left">{$accountForm.Fields.email2}</td>
		</tr>
		<tr>
			<td colspan="2"><hr size=1 noshade width="90%"></td>
		</tr>
			{$accountForm.js_check}
		<tr>
			<td colspan="2">{$accountForm.send_button}</td>
		</tr>
	</table>
	{$accountForm.End}
</body>
</html>