<%= label_for author => 'Author' %>
<% if (my $previous_author = session->{'author'}) { =%>
<%= text_field author => $previous_author, maxlength => 63, minlength => 1 %>
<% } else { =%>
<%= text_field author => 'Anonymous', maxlength => 63, minlength => 1 %>
<% } =%>
<% if (my $error = validation->error('author')) { =%>
Invalid author: 1 to 63 characters please.
<% } =%>
<%= label_for title => 'Title' %>
<%= text_field title => (
maxlength => 127,
minlength => 1,
autofocus => 'autofocus'
) %>
<% if (my $error = validation->error('title')) { =%>
Invalid title: 1 to 127 characters please.
<% } =%>
<%= label_for body => 'Text' %>
<%= text_area body => (
maxlength => 4000,
minlength => 2,
required => 'true',
rows => 6
) %>
<% if (my $error = validation->error('body')) { =%>
Invalid text: Up to 4,000 characters only.
<% } =%>
<%= submit_button 'Post', class => 'post button' %>