15 lines
520 B
HTML
15 lines
520 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block header %}
|
|
<h1>{% block title %}{{ localize("new_post") }}{% endblock %}</h1>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div id="new-post-area">
|
|
<form id="post" method="post">
|
|
<input type="text" name="title" id="post-title" placeholder="{{localize('title')}}" required>
|
|
<textarea id="post-body" name="body" placeholder="{{localize('post_body')}}" required></textarea>
|
|
<button type="submit"> {{ localize("submit_post") }}</button>
|
|
</form>
|
|
</div>
|
|
{% endblock %} |