2024-08-18 22:59:25 +09:00
|
|
|
<form action="/memos/<%= @memo['id'] %>" method="post">
|
2024-07-28 20:53:15 +09:00
|
|
|
<input type="hidden" name="_method" value="patch">
|
|
|
|
<label for="title">タイトル</label>
|
2024-08-14 14:22:10 +09:00
|
|
|
<input type="text" name="title" id="title" value="<%= h(@memo['title']) %>">
|
2024-07-28 20:53:15 +09:00
|
|
|
<label for="content">内容</label>
|
2024-08-14 14:22:10 +09:00
|
|
|
<textarea name="content" id="content"><%= h(@memo['content']) %></textarea>
|
2024-08-18 22:59:25 +09:00
|
|
|
<button type="submit" class="button save">保存</button>
|
2024-07-28 20:53:15 +09:00
|
|
|
</form>
|