Help for this page

Select Code to Download


  1. or download this
    <html>
      <head>
    ...
        </form>
      </body>
    </html>
    
  2. or download this
    my $template = Template::Empty->load(file =>'index.html');
    $template->title = 'Now we have a page title'.
    ...
    $template->form->username->value = $default_user->username;
    $template->messagebar = 'Your last record was updated';
    print $template->as_string;