flask-blog/blog/templates/entries/new.html
2025-03-02 15:29:48 +09:00

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 %}