CharmBoard/templates/thread_compose.html.ep

21 lines
553 B
Plaintext
Raw Normal View History

2024-08-08 07:22:31 +00:00
% layout 'default',
% title => 'New thread - ' . $c->board_name;
<a href="/"><%= $c->board_name %></a> » <%= $cat_title %> »
2024-08-08 07:22:31 +00:00
<%= $subf_title %> » new thread
<br /><br />
<form method="post" action="/board/<%= $subf_id %>/new/">
2024-08-08 07:22:31 +00:00
<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 />
2024-08-08 07:22:31 +00:00
<input type="submit" value="post!" />
</form>