13 lines
603 B
Plaintext
13 lines
603 B
Plaintext
<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" required><br>
|
|
<textarea id="initial_post" name="initial_post" placeholder="Post body" required></textarea><br>
|
|
<input type="submit" value="Create thread">
|
|
</form> |