2022-11-28 23:22:25 -05:00
|
|
|
% layout 'default';
|
2022-08-24 00:35:35 -04:00
|
|
|
% title 'New Thread';
|
2023-06-04 17:47:36 -04:00
|
|
|
% content_for open_graph => begin
|
|
|
|
<meta property="og:type" content="website">
|
|
|
|
<meta property="og:title" content="<%= title %>">
|
|
|
|
<meta property="og:description" content="Start a new thread.">
|
|
|
|
% end
|
2023-06-07 15:43:45 -04:00
|
|
|
% content_for twitter_card => begin
|
|
|
|
<meta name="twitter:title" content="<%= title %>">
|
|
|
|
<meta name="twitter:description" content="Start a new thread.">
|
|
|
|
% end
|
2023-05-19 18:49:08 -04:00
|
|
|
<h2 class="page-title"><%= title %></h2>
|
2023-05-20 01:54:12 -04:00
|
|
|
<form method="post" class="form-body">
|
2023-08-13 22:09:44 -04:00
|
|
|
<% if ($draft) { =%>
|
|
|
|
<div class="form-preview">
|
|
|
|
<%== markdown $draft =%>
|
|
|
|
</div>
|
|
|
|
<% } =%>
|
2023-05-20 01:54:12 -04:00
|
|
|
<div class="form-field">
|
2023-05-28 00:42:07 -04: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 03:56:07 -04:00
|
|
|
<%= label_for author => 'Author' %>
|
2022-09-27 13:20:30 -04:00
|
|
|
<%= text_field author => session->{'author'}, (
|
2023-05-09 21:15:16 -04:00
|
|
|
id => 'author',
|
2022-09-27 13:20:30 -04:00
|
|
|
maxlength => 63,
|
2023-05-09 21:21:58 -04:00
|
|
|
minlength => 1,
|
|
|
|
required => undef
|
2022-09-27 13:20:30 -04:00
|
|
|
) %>
|
2022-08-24 00:35:35 -04:00
|
|
|
</div>
|
2023-05-20 01:54:12 -04:00
|
|
|
<div class="form-field">
|
2023-05-28 00:42:07 -04: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 00:35:35 -04:00
|
|
|
<%= label_for title => 'Title' %>
|
2022-09-21 01:28:50 -04:00
|
|
|
<%= text_field title => (
|
2023-05-09 21:15:16 -04:00
|
|
|
id => 'title',
|
2022-09-21 01:28:50 -04:00
|
|
|
maxlength => 127,
|
|
|
|
minlength => 1,
|
2023-05-09 21:21:58 -04:00
|
|
|
autofocus => undef,
|
|
|
|
required => undef
|
2022-09-21 01:28:50 -04:00
|
|
|
) %>
|
2022-08-24 00:35:35 -04:00
|
|
|
</div>
|
2023-05-20 01:54:12 -04:00
|
|
|
<div class="form-field">
|
2023-05-28 00:42:07 -04: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 00:12:16 -04:00
|
|
|
<%= label_for body => 'Text' %>
|
|
|
|
<%= text_area body => (
|
2023-05-09 21:15:16 -04:00
|
|
|
id => 'body',
|
2023-08-24 20:00:24 -04:00
|
|
|
maxlength => $body_limit,
|
2022-08-24 00:35:35 -04:00
|
|
|
minlength => 2,
|
2023-05-09 21:21:58 -04:00
|
|
|
required => undef,
|
2022-08-24 00:35:35 -04:00
|
|
|
rows => 6
|
|
|
|
) %>
|
|
|
|
</div>
|
2023-08-13 22:09:44 -04:00
|
|
|
<div class="form-checkbox">
|
|
|
|
<%= check_box preview => 1, id => 'preview' %>
|
|
|
|
<%= label_for preview => 'Preview' %>
|
|
|
|
</div>
|
2023-05-20 23:43:32 -04:00
|
|
|
<button type="submit" class="form-button">Post</button>
|
2022-08-24 00:35:35 -04:00
|
|
|
</form>
|