<html>
 <head>
  <title>Display Form Input</title>
 </head>
 <body>
  Input some values to the following form and press the submit button.
  <al-form method="post">
   Text field: <al-input name="text"><br>
   Singleton checkbox: <al-input type="checkbox" name="singleton"><br>
   Checkbox group:
   <al-input type="checkbox" name="group" list value="check1">
   <al-input type="checkbox" name="group" list value="check2"><br>
   Radio buttons:
   <al-input type="radio" name="radio" value="radio1">
   <al-input type="radio" name="radio" value="radio2"><br>
   Option menu:
   <al-select name="select">
    <al-option>option1</al-option>
    <al-option>option2</al-option>
    <al-option>option3</al-option>
   </al-select>
   <al-input type="submit" name="submit" value="submit">
  </al-form>
  number of requests: <al-value expr="num"><br>
  text: <al-value expr="text"><br>
  singleton: <al-value expr="singleton"><br>
  group: <al-value expr="group"><br>
  radio: <al-value expr="radio"><br>
  select: <al-value expr="select"><br>
 </body>
</html>
