-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform-contact.tpl.php
45 lines (39 loc) · 1.05 KB
/
form-contact.tpl.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?php
/**
* @file form-contact.tpl.php
*/
?>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Stand Alone Zend Form</title>
<meta name="description" content="Stand Alone Zend Form">
<meta name="author" content="Rayhan Muktader">
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<form id="contact" action="<?= $this->element->getAction(); ?>"
method="<?= $this->element->getMethod(); ?>">
<table>
<tr>
<td>Your Name</td>
<td><?= $this->element->name; ?></td>
</tr>
<tr>
<td>Your E-mail Address</td>
<td><?= $this->element->email; ?></td>
</tr>
<tr>
<td>Your Message</td>
<td><?= $this->element->message; ?></td>
</tr>
<tr>
<td><?= $this->element->submit ?></td>
</tr>
</table>
</form>
</body>
</html>