% layout 'main'; % title 'New Thread';

<%= title %>

<%= label_for name => 'Author' %> <%= text_field name =>'Anonymous', maxlength => 63, minlength => 1 %>
<%= label_for title => 'Title' %> <%= text_field 'title', maxlength => 127, minlength => 1 %>
<%= label_for post => 'Text' %> <%= text_area 'post', maxlength => 4000, minlength => 2, required => 'true', rows => 6 %>
<%= submit_button 'Post', class => 'post button' %>