CharmBoard/templates/thread_compose.html.ep

21 lines
553 B
Plaintext

% layout 'default',
% title => 'New thread - ' . $c->board_name;
<a href="/"><%= $c->board_name %></a> » <%= $cat_title %> »
<%= $subf_title %> » new thread
<br /><br />
<form method="post" action="/board/<%= $subf_id %>/new/">
<input
id="thread-title"
name="thread-title"
type="text"
placeholder="thread title"
/><br />
<textarea
id="post-content"
name="post-content"
cols="50" rows="5"
placeholder="post content"
></textarea>
<br /><br />
<input type="submit" value="post!" />
</form>