空タグを追加

This commit is contained in:
yuuki 2025-03-05 23:44:10 +00:00
parent 4f1aa3df63
commit e8bf2dc256

View file

@ -10,11 +10,10 @@
<body> <body>
<h1>掲示板へようこそ!</h1> <h1>掲示板へようこそ!</h1>
<p>良識のあるメッセージを心がけてください</p> <p>良識のあるメッセージを心がけてください</p>
<p>
{% for i in range(max_page) %} {% for i in range(max_page) %}
<a href="/?page={{ i }}">{{ i }}</a> <a href="/?page={{ i }}">{{ i }}</a>
{% endfor %} {% endfor %}
</p> <p></p>
<textarea placeholder="ここにメッセージを入力" rows="4" cols="50" id="message"></textarea> <textarea placeholder="ここにメッセージを入力" rows="4" cols="50" id="message"></textarea>
<input type="submit" value="今すぐ送信!" onclick="notePost();"> <input type="submit" value="今すぐ送信!" onclick="notePost();">
{% for note in notes %} {% for note in notes %}