pタグを追加
This commit is contained in:
parent
5e95aa8dc3
commit
4f1aa3df63
1 changed files with 5 additions and 3 deletions
|
@ -10,9 +10,11 @@
|
||||||
<body>
|
<body>
|
||||||
<h1>掲示板へようこそ!</h1>
|
<h1>掲示板へようこそ!</h1>
|
||||||
<p>良識のあるメッセージを心がけてください</p>
|
<p>良識のあるメッセージを心がけてください</p>
|
||||||
{% for i in range(max_page) %}
|
<p>
|
||||||
<a href="/?page={{ i }}">{{ i }}</a>
|
{% for i in range(max_page) %}
|
||||||
{% endfor %}
|
<a href="/?page={{ i }}">{{ i }}</a>
|
||||||
|
{% endfor %}
|
||||||
|
</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 %}
|
||||||
|
|
Loading…
Add table
Reference in a new issue