21 lines
545 B
HTML

{include "admin/layout.html"}
{block "content"}
<h1>Add News Post</h1>
<p>
Write a new news post that will be displayed in every town! You can use basic markdown to style the post.
</p>
<form class="standard" method="post">
{csrf}
<div>
<textarea name="content" id="content" class="text w-full mb-1" required placholder="Write the news here!"></textarea>
</div>
<div>
<a href="/admin"><button type="button" class="btn">Cancel</button></a>
<button type="submit" class="btn btn-primary">Create Post</button>
</div>
</form>
{/block}