2022-08-24 00:35:35 -04:00
|
|
|
% layout 'main';
|
|
|
|
% title 'New Thread';
|
|
|
|
<h2><%= title %></h2>
|
|
|
|
<form method="post">
|
2022-09-17 03:56:07 -04:00
|
|
|
<div class="author field">
|
|
|
|
<%= label_for author => 'Author' %>
|
2022-09-27 13:20:30 -04:00
|
|
|
<%= text_field author => session->{'author'}, (
|
|
|
|
maxlength => 63,
|
|
|
|
minlength => 1
|
|
|
|
) %>
|
2022-09-17 03:56:07 -04:00
|
|
|
<% if (my $error = validation->error('author')) { =%>
|
2022-09-21 00:27:16 -04:00
|
|
|
<p class="field-with-error">Invalid author: 1 to 63 characters please.</p>
|
2022-08-24 00:35:35 -04:00
|
|
|
<% } =%>
|
|
|
|
</div>
|
|
|
|
<div class="title field">
|
|
|
|
<%= label_for title => 'Title' %>
|
2022-09-21 01:28:50 -04:00
|
|
|
<%= text_field title => (
|
|
|
|
maxlength => 127,
|
|
|
|
minlength => 1,
|
|
|
|
autofocus => 'autofocus'
|
|
|
|
) %>
|
2022-08-24 00:35:35 -04:00
|
|
|
<% if (my $error = validation->error('title')) { =%>
|
2022-09-21 00:27:16 -04:00
|
|
|
<p class="field-with-error">Invalid title: 1 to 127 characters please.</p>
|
2022-08-24 00:35:35 -04:00
|
|
|
<% } =%>
|
|
|
|
</div>
|
|
|
|
<div class="text field">
|
2022-09-21 00:12:16 -04:00
|
|
|
<%= label_for body => 'Text' %>
|
|
|
|
<%= text_area body => (
|
2022-08-24 00:35:35 -04:00
|
|
|
maxlength => 4000,
|
|
|
|
minlength => 2,
|
|
|
|
required => 'true',
|
|
|
|
rows => 6
|
|
|
|
) %>
|
2022-09-21 00:12:16 -04:00
|
|
|
<% if (my $error = validation->error('body')) { =%>
|
2022-09-21 00:27:16 -04:00
|
|
|
<p class="field-with-error">Invalid text: Up to 4,000 characters only.</p>
|
2022-08-24 00:35:35 -04:00
|
|
|
<% } =%>
|
|
|
|
</div>
|
|
|
|
<%= submit_button 'Post', class => 'post button' %>
|
|
|
|
</form>
|