% layout 'default'; % title 'New Thread';

<%= title %>

<% if (my $error = validation->error('author')) { =%>

Must be between <%= $error->[2] %> and <%= $error->[3] %> characters.

<% } =%> <%= label_for author => 'Author' %> <%= text_field author => session->{'author'}, ( id => 'author', maxlength => 63, minlength => 1, required => undef ) %>
<% if (my $error = validation->error('title')) { =%>

Must be between <%= $error->[2] %> and <%= $error->[3] %> characters.

<% } =%> <%= label_for title => 'Title' %> <%= text_field title => ( id => 'title', maxlength => 127, minlength => 1, autofocus => undef, required => undef ) %>
<% if (my $error = validation->error('body')) { =%>

Must be between <%= $error->[2] %> and <%= $error->[3] %> characters.

<% } =%> <%= label_for body => 'Text' %> <%= text_area body => ( id => 'body', maxlength => 4000, minlength => 2, required => undef, rows => 6 ) %>