2022-07-29 23:30:19 -04:00
|
|
|
% layout 'main';
|
2022-08-23 19:06:33 -04:00
|
|
|
% title 'New Remark';
|
2022-07-29 23:30:19 -04:00
|
|
|
<h2><%= title %></h2>
|
2022-08-23 20:05:07 -04:00
|
|
|
<div class="threads">
|
|
|
|
<article class="thread">
|
|
|
|
<span class="id">#<%= %$thread{'id'} %></span>
|
|
|
|
<h3 class="title"><%= %$thread{'title'} %></h3>
|
|
|
|
<h4 class="date"><%= %$thread{'date'} %></h4>
|
|
|
|
<h5 class="author"><%= %$thread{'author'} %></h5>
|
2022-08-23 21:20:23 -04:00
|
|
|
<p class="body"><%= %$thread{'body'} %></p>
|
2022-08-23 20:05:07 -04:00
|
|
|
</article>
|
|
|
|
</div>
|
2022-07-29 23:30:19 -04:00
|
|
|
<form method="post">
|
|
|
|
<div class="name field">
|
|
|
|
<%= label_for name => 'Author' %>
|
|
|
|
<%= text_field name =>'Anonymous', maxlength => 63, minlength => 1 %>
|
2022-08-15 17:48:58 -04:00
|
|
|
<% if (my $error = validation->error('name')) { =%>
|
2022-08-23 20:05:07 -04:00
|
|
|
<p class="field-with-error">Invalid name: 1 to 63 characters please.</p>
|
2022-08-15 17:48:58 -04:00
|
|
|
<% } =%>
|
2022-07-29 23:30:19 -04:00
|
|
|
</div>
|
|
|
|
<div class="text field">
|
|
|
|
<%= label_for post => 'Text' %>
|
2022-08-15 17:48:58 -04:00
|
|
|
<%= text_area 'post', (
|
2022-07-29 23:30:19 -04:00
|
|
|
maxlength => 4000,
|
|
|
|
minlength => 2,
|
|
|
|
required => 'true',
|
2022-08-15 17:48:58 -04:00
|
|
|
rows => 6
|
|
|
|
) %>
|
|
|
|
<% if (my $error = validation->error('post')) { =%>
|
2022-08-23 20:05:07 -04:00
|
|
|
<p class="field-with-error">Invalid post: Up to 4,000 characters only.</p>
|
2022-08-15 17:48:58 -04:00
|
|
|
<% } =%>
|
2022-07-29 23:30:19 -04:00
|
|
|
</div>
|
|
|
|
<%= submit_button 'Post', class => 'post button' %>
|
|
|
|
</form>
|