10 lines
No EOL
352 B
HTML
10 lines
No EOL
352 B
HTML
{% extends "layout.html" %}
|
|
{% block body %}
|
|
<form action="{{ url_for('add_entry') }}" method="post">
|
|
<label for="title">タイトル</label>
|
|
<input type="text" id="title" name="title">
|
|
<label for="text">本文</label>
|
|
<textarea id="text" name="text" rows="3"></textarea>
|
|
<button type="submit">作成</button>
|
|
</form>
|
|
{% endblock %} |