質問編集履歴
1
index\.html追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -347,3 +347,65 @@
|
|
347
347
|
}
|
348
348
|
|
349
349
|
```
|
350
|
+
|
351
|
+
```html
|
352
|
+
|
353
|
+
<!DOCTYPE html>
|
354
|
+
|
355
|
+
<html xmlns:th="http://www.thymeleaf.org">
|
356
|
+
|
357
|
+
<head>
|
358
|
+
|
359
|
+
<title>top page</title>
|
360
|
+
|
361
|
+
<meta http-equiv="Content-Type"
|
362
|
+
|
363
|
+
content="text/html" charset="UTF-8"/>
|
364
|
+
|
365
|
+
|
366
|
+
|
367
|
+
<!-- css -->
|
368
|
+
|
369
|
+
|
370
|
+
|
371
|
+
<style>
|
372
|
+
|
373
|
+
html { height: 100% }
|
374
|
+
|
375
|
+
body { height: 100%; margin: 0; padding: 0 }
|
376
|
+
|
377
|
+
#map { height: 100% }
|
378
|
+
|
379
|
+
</style>
|
380
|
+
|
381
|
+
</head>
|
382
|
+
|
383
|
+
<body>
|
384
|
+
|
385
|
+
|
386
|
+
|
387
|
+
<h1 th:text="${title}">find Page</h1>
|
388
|
+
|
389
|
+
<table>
|
390
|
+
|
391
|
+
<form method="post" action="/NewAccount" th:object="${formModel}">
|
392
|
+
|
393
|
+
<tr><td>名前</td>
|
394
|
+
|
395
|
+
<td><input type="text" id="name" name="name" size="20" th:value="${name}"/></td></tr>
|
396
|
+
|
397
|
+
<tr><td>パスワード</td>
|
398
|
+
|
399
|
+
<td><input type="text" id="password" name="password" size="20" th:value="${password}"/></td></tr>
|
400
|
+
|
401
|
+
<tr><td></td><td><input type="submit" /></td></tr>
|
402
|
+
|
403
|
+
</form>
|
404
|
+
|
405
|
+
</table>
|
406
|
+
|
407
|
+
</body>
|
408
|
+
|
409
|
+
</html>
|
410
|
+
|
411
|
+
```
|