質問編集履歴
1
生成されたHTMLを追記しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -68,6 +68,98 @@
|
|
68
68
|
|
69
69
|
|
70
70
|
|
71
|
+
■生成されたHTML
|
72
|
+
|
73
|
+
```HTML
|
74
|
+
|
75
|
+
|
76
|
+
|
77
|
+
(前略)
|
78
|
+
|
79
|
+
|
80
|
+
|
81
|
+
<html>
|
82
|
+
|
83
|
+
<head>
|
84
|
+
|
85
|
+
<meta charset="utf-8">
|
86
|
+
|
87
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
88
|
+
|
89
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
90
|
+
|
91
|
+
|
92
|
+
|
93
|
+
<title>タイトル</title>
|
94
|
+
|
95
|
+
|
96
|
+
|
97
|
+
<!--Boostrap-->
|
98
|
+
|
99
|
+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
100
|
+
|
101
|
+
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
|
102
|
+
|
103
|
+
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
104
|
+
|
105
|
+
|
106
|
+
|
107
|
+
|
108
|
+
|
109
|
+
</head>
|
110
|
+
|
111
|
+
|
112
|
+
|
113
|
+
<body>
|
114
|
+
|
115
|
+
|
116
|
+
|
117
|
+
<h1>メッセージ新規作成ページ</h1>
|
118
|
+
|
119
|
+
|
120
|
+
|
121
|
+
<form method="POST" action="http://9fbe8dd6a4e54ddb8742a5d6326e9408.vfs.cloud9.us-east-2.amazonaws.com/messages?" accept-charset="UTF-8"><input name="_token" type="hidden" value="tnJghx8bXaIITjnjcLIglYCChKGU8UDvaLkPyxIe">
|
122
|
+
|
123
|
+
<input type="hidden" name="_token" value="tnJghx8bXaIITjnjcLIglYCChKGU8UDvaLkPyxIe">
|
124
|
+
|
125
|
+
@csrf
|
126
|
+
|
127
|
+
<label for="content">メッセージ:</label>
|
128
|
+
|
129
|
+
<input name="content" type="text" id="content">
|
130
|
+
|
131
|
+
|
132
|
+
|
133
|
+
<input type="submit" value="投稿">
|
134
|
+
|
135
|
+
|
136
|
+
|
137
|
+
</form>
|
138
|
+
|
139
|
+
|
140
|
+
|
141
|
+
(中略)
|
142
|
+
|
143
|
+
|
144
|
+
|
145
|
+
</script>
|
146
|
+
|
147
|
+
</body>
|
148
|
+
|
149
|
+
</html>
|
150
|
+
|
151
|
+
|
152
|
+
|
153
|
+
```
|
154
|
+
|
155
|
+
|
156
|
+
|
157
|
+
|
158
|
+
|
159
|
+
|
160
|
+
|
161
|
+
|
162
|
+
|
71
163
|
### 試したこと
|
72
164
|
|
73
165
|
|