19 lines
476 B
HTML

{include "layout.html"}
{block "content"}
<h2 class="mb-1">Reply to: {thread.Title}</h2>
<form action="/forum/{thread.ID}/reply" method="post" class="standard">
{csrf}
<div class="mb-1">
<textarea class="forum-text w-full" placeholder="Type your reply here!" name="content" rows="10"></textarea>
</div>
<div>
<button type="submit" class="btn btn-primary">Reply</button>
<a href="/forum/{thread.ID}"><button class="btn">Back</button></a>
</div>
</form>
{/block}