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
|
<%inherit file="base.html"/>
<p>
Example of using
<a href="https://github.com/circuits/circuits/">circuits</a> and its
<b>Web Components</b> to build a simple web application that handles
some basic form data.
</p>
% if message:
<div id="message">${message}</div>
% endif
<form action="submit" method="POST">
<table border="0" rules="none">
<tr>
<td>First Name:</td>
<td><input type="text" name="firstName"></td>
</tr>
<tr>
<td>Last Name:</td>
<td><input type="text" name="lastName"></td>
</tr>
<tr>
<td colspan=2" align="center">
<input type="submit" value="Submit">
</td>
</tr>
</table>
</form>
|