<html>
<head>
<meta charset="UTF-8">
<title>메모 작성</title>
<link rel="stylesheet" href="/css/main.css">
</head>
<body>
<h1>메모 작성</h1>
<form method="post" action="/insert">
제목:
<input type="text" name="title" size="90" required>
<br>
내용:
<br>
<textarea name="content" rows="8" cols="80" required></textarea><br>
<button type="submit">등록</button>
<button type="button" onclick="location.href='/'">목록</button>
</form>
</body>
</html>