// Simple Example 2

#cgivar input firsttime

#set TITLE = "Simple Example 2"
#include top

<center>

#if @firsttime = ""

  #if @input != ""
    <h3>You entered: <tt>@input</tt></h3>
  #else
    <h3>Nothing was entered.</h3>
  #endif

#endif

<form action="@CGIPROG" method=GET>
#formtarget example2
Enter some text: <input name=input size=20 maxlen=40 value=""> &nbsp; 
<input type=submit value="Go">
</form>

