質問編集履歴
1
index\.html追加
title
CHANGED
File without changes
|
body
CHANGED
@@ -172,4 +172,35 @@
|
|
172
172
|
|
173
173
|
|
174
174
|
}
|
175
|
+
```
|
176
|
+
```html
|
177
|
+
<!DOCTYPE html>
|
178
|
+
<html xmlns:th="http://www.thymeleaf.org">
|
179
|
+
<head>
|
180
|
+
<title>top page</title>
|
181
|
+
<meta http-equiv="Content-Type"
|
182
|
+
content="text/html" charset="UTF-8"/>
|
183
|
+
|
184
|
+
<!-- css -->
|
185
|
+
|
186
|
+
<style>
|
187
|
+
html { height: 100% }
|
188
|
+
body { height: 100%; margin: 0; padding: 0 }
|
189
|
+
#map { height: 100% }
|
190
|
+
</style>
|
191
|
+
</head>
|
192
|
+
<body>
|
193
|
+
|
194
|
+
<h1 th:text="${title}">find Page</h1>
|
195
|
+
<table>
|
196
|
+
<form method="post" action="/NewAccount" th:object="${formModel}">
|
197
|
+
<tr><td>名前</td>
|
198
|
+
<td><input type="text" id="name" name="name" size="20" th:value="${name}"/></td></tr>
|
199
|
+
<tr><td>パスワード</td>
|
200
|
+
<td><input type="text" id="password" name="password" size="20" th:value="${password}"/></td></tr>
|
201
|
+
<tr><td></td><td><input type="submit" /></td></tr>
|
202
|
+
</form>
|
203
|
+
</table>
|
204
|
+
</body>
|
205
|
+
</html>
|
175
206
|
```
|