回答編集履歴
1
hosoku
test
CHANGED
@@ -39,3 +39,41 @@
|
|
39
39
|
})
|
40
40
|
|
41
41
|
```
|
42
|
+
|
43
|
+
|
44
|
+
|
45
|
+
```HTML.CSS
|
46
|
+
|
47
|
+
<form action="new" method="post">
|
48
|
+
|
49
|
+
<p>名前</p>
|
50
|
+
|
51
|
+
<input type="text" name="name" value="山田太郎">
|
52
|
+
|
53
|
+
<p>性別</p>
|
54
|
+
|
55
|
+
<input type="text" name="gender" value="男">
|
56
|
+
|
57
|
+
<p>住所</p>
|
58
|
+
|
59
|
+
<input type="text" name="address" value="○○県○○市○○1-1-1">
|
60
|
+
|
61
|
+
<p>番号名</p>
|
62
|
+
|
63
|
+
<input type="text" name="address2" value="ヤマダビルディング101号室">
|
64
|
+
|
65
|
+
<p>年齢</p>
|
66
|
+
|
67
|
+
<input type="text" name="age" value="18">
|
68
|
+
|
69
|
+
<p>LINE ID</p>
|
70
|
+
|
71
|
+
<input type="text" value="@" name="lineid">
|
72
|
+
|
73
|
+
<input href="/new" type="submit" value="送信する">
|
74
|
+
|
75
|
+
<!--<a href="/list">一覧にもどる</a>-->
|
76
|
+
|
77
|
+
</form>
|
78
|
+
|
79
|
+
```
|