% layout 'main'; % title 'New Remark';

<%= title %>

#<%= %$thread{'id'} %>

<%= %$thread{'title'} %>

<%= %$thread{'date'} %>

<%= %$thread{'author'} %>

<%= %$thread{'body'} %>

<%= label_for name => 'Author' %> <%= text_field name =>'Anonymous', maxlength => 63, minlength => 1 %> <% if (my $error = validation->error('name')) { =%>

Invalid name: 1 to 63 characters please.

<% } =%>
<%= label_for post => 'Text' %> <%= text_area 'post', ( maxlength => 4000, minlength => 2, required => 'true', rows => 6 ) %> <% if (my $error = validation->error('post')) { =%>

Invalid post: Up to 4,000 characters only.

<% } =%>
<%= submit_button 'Post', class => 'post button' %>