2022-11-29 04:22:25 +00:00
|
|
|
% layout 'default';
|
2022-08-24 04:35:35 +00:00
|
|
|
% title 'New Thread';
|
2023-05-19 22:49:08 +00:00
|
|
|
<h2 class="page-title"><%= title %></h2>
|
2023-05-20 05:54:12 +00:00
|
|
|
<form method="post" class="form-body">
|
|
|
|
<div class="form-field">
|
2023-05-28 04:42:07 +00:00
|
|
|
<% if (my $error = validation->error('author')) { =%>
|
|
|
|
<p class="field-with-error">Must be between <%= $error->[2] %>
|
|
|
|
and <%= $error->[3] %> characters.</p>
|
|
|
|
<% } =%>
|
2022-09-17 07:56:07 +00:00
|
|
|
<%= label_for author => 'Author' %>
|
2022-09-27 17:20:30 +00:00
|
|
|
<%= text_field author => session->{'author'}, (
|
2023-05-10 01:15:16 +00:00
|
|
|
id => 'author',
|
2022-09-27 17:20:30 +00:00
|
|
|
maxlength => 63,
|
2023-05-10 01:21:58 +00:00
|
|
|
minlength => 1,
|
|
|
|
required => undef
|
2022-09-27 17:20:30 +00:00
|
|
|
) %>
|
2022-08-24 04:35:35 +00:00
|
|
|
</div>
|
2023-05-20 05:54:12 +00:00
|
|
|
<div class="form-field">
|
2023-05-28 04:42:07 +00:00
|
|
|
<% if (my $error = validation->error('title')) { =%>
|
|
|
|
<p class="field-with-error">Must be between <%= $error->[2] %>
|
|
|
|
and <%= $error->[3] %> characters.</p>
|
|
|
|
<% } =%>
|
2022-08-24 04:35:35 +00:00
|
|
|
<%= label_for title => 'Title' %>
|
2022-09-21 05:28:50 +00:00
|
|
|
<%= text_field title => (
|
2023-05-10 01:15:16 +00:00
|
|
|
id => 'title',
|
2022-09-21 05:28:50 +00:00
|
|
|
maxlength => 127,
|
|
|
|
minlength => 1,
|
2023-05-10 01:21:58 +00:00
|
|
|
autofocus => undef,
|
|
|
|
required => undef
|
2022-09-21 05:28:50 +00:00
|
|
|
) %>
|
2022-08-24 04:35:35 +00:00
|
|
|
</div>
|
2023-05-20 05:54:12 +00:00
|
|
|
<div class="form-field">
|
2023-05-28 04:42:07 +00:00
|
|
|
<% if (my $error = validation->error('body')) { =%>
|
|
|
|
<p class="field-with-error">Must be between <%= $error->[2] %>
|
|
|
|
and <%= $error->[3] %> characters.</p>
|
|
|
|
<% } =%>
|
2022-09-21 04:12:16 +00:00
|
|
|
<%= label_for body => 'Text' %>
|
|
|
|
<%= text_area body => (
|
2023-05-10 01:15:16 +00:00
|
|
|
id => 'body',
|
2022-08-24 04:35:35 +00:00
|
|
|
maxlength => 4000,
|
|
|
|
minlength => 2,
|
2023-05-10 01:21:58 +00:00
|
|
|
required => undef,
|
2022-08-24 04:35:35 +00:00
|
|
|
rows => 6
|
|
|
|
) %>
|
|
|
|
</div>
|
2023-05-21 03:43:32 +00:00
|
|
|
<button type="submit" class="form-button">Post</button>
|
2022-08-24 04:35:35 +00:00
|
|
|
</form>
|