blob: a3cf56dd8010dfae655a9f5c38ddf9135203ac32 [file] [log] [blame]
<?xml version="1.0"?>
<html xmlns:jx="http://apache.org/cocoon/templates/jx/1.0">
<body>
Email: ${form2bean.email}
<br/>
Phone: +${form2bean.phoneCountry}-${form2bean.phoneZone}-${form2bean.phoneNumber}
<br/>
IP Address: ${form2bean.ipAddress}
<br/>
birthday: ${form2bean.birthday}
<br/>
number: ${form2bean.aNumber}
<br/>
I choose: ${form2bean.choose}
<br/>
Sex: <i18n:text xmlns:i18n="http://apache.org/cocoon/i18n/2.1">${form2bean.sex}</i18n:text>
<table border="1">
<tr>
<th>id</th>
<th>firstName</th>
<th>lastName</th>
<th>phone</th>
<th>email</th>
</tr>
<jx:forEach var="item" items="${form2bean.contacts}">
<tr>
<td>${item.id}</td>
<td>${item.firstName}</td>
<td>${item.lastName}</td>
<td>${item.phone}</td>
<td>${item.email}</td>
</tr>
</jx:forEach>
</table>
<br/>
<a href="form2bean.flow">Do it again</a>
</body>
</html>