This commit is contained in:
암냥 2026-08-13 01:03:34 +09:00
commit a59ac1f3cb
No known key found for this signature in database
14 changed files with 434 additions and 0 deletions

5
templates/edit.html Normal file
View file

@ -0,0 +1,5 @@
<form action="/edit/{{ post.id }}" method="POST">
<input placeholder="title" name="title" value="{{ post.title }}" />
<textarea placeholder="content" name="content">{{ post.content }}</textarea>
<button type="submit">Submit</button>
</form>