File: index.html

package info (click to toggle)
circuits 3.2.3-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,980 kB
  • sloc: python: 17,583; javascript: 3,226; makefile: 100
file content (28 lines) | stat: -rw-r--r-- 631 bytes parent folder | download | duplicates (2)
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>