Newer
Older
2022-autumn-study / bbs.ejs
@ItoRino ItoRino on 16 Oct 2022 642 bytes db
<!DOCTYPE html>
<html lang="ja">
<head>
  <meta charset="UTF-8">
  <title>BBS</title>
</head>
<body>
<form method="post" action="/send">
<label>名前: <input type="text" name="name"></label><br>
<label>性別:
  <input type="radio" checked name="sex" value="男"> 男
  <input type="radio" name="sex" value="女"> 女 
</label><br>
<label>コメント: <input type="text" name="comment" size=60></label><br>
<input type="submit" value="投稿">
</form>
<hr>
<% for (let data of posts) { %>
日付: <%= data.date %><br>
名前: <%= data.name %><br>
性別: <%= data.sex %><br>
コメント: <%= data.comment %><br>
<hr>
<% } %></body>
</html>