Myriad Future

edit.html

💻 코드 1
(1)  <!DOCTYPE html>
(2)  <html>
(3)  <head>
(4)    <meta charset="UTF-8">
(5)    <title></title>
(6)    <link rel="stylesheet" href="/css/main.css">
(7)    <script>
(8)      function delete_memo() {
(9)        if (confirm("삭제하시겠습니까?")) {
(10)          location.href = "/delete/" + document.form1.id.value;
(11)        }
(12)      }
(13)    </script>  
(14)  </head>
(15)  <body>
(16)    <form name="form1" method="post" action="/update">
(17)      <input type="hidden" name="id" th:value="${memo.id}">
(18)      제목: 
(19)      <input type="text" id="title" name="title" th:value="${memo.title}" required>
(20)      <br>
(21)  
(22)      내용: <br>
(23)      <textarea id="content" name="content" rows="8" cols="80" th:text="${memo.content}" required></textarea>
(24)      <br>
(25)   <button type="submit">수정</button>
(26)      <button type="button" onclick="delete_memo()">삭제</button>
(27)      <button type="button" onclick="location.href='/'">목록</button>
(28)    </form>
(29)  </body>
(30)  </html>
(31)