18 lines
816 B
Plaintext
18 lines
816 B
Plaintext
<div class="darkbg settings-container">
|
|
<h1>New thread</h1>
|
|
<form method="post">
|
|
<label for="topic_id">Topic</label>
|
|
<select name="topic_id", id="topic_id" autocomplete="off">
|
|
<% for _, topic in ipairs(all_topics) do %>
|
|
<option value="<%= topic.id %>" <%- params.topic_id == tostring(topic.id) and "selected" or "" %>><%= topic.name %></value>
|
|
<% end %>
|
|
</select><br>
|
|
<label for="title">Thread title</label>
|
|
<input type="text" id="title" name="title" placeholder="Required" required>
|
|
<label for="initial_post">Post body</label>
|
|
<textarea id="initial_post" name="initial_post" placeholder="Required" rows=5 required></textarea>
|
|
<% render "views.common.bbcode_help" %>
|
|
<input type="submit" value="Create thread">
|
|
</form>
|
|
</div>
|