teratail header banner
teratail header banner
質問するログイン新規登録

質問編集履歴

1

生成されたHTMLを追記しました。

2018/08/28 08:06

投稿

so_chan
so_chan

スコア16

title CHANGED
File without changes
body CHANGED
@@ -33,6 +33,52 @@
33
33
  @endsection
34
34
  ```
35
35
 
36
+ ■生成されたHTML
37
+ ```HTML
38
+
39
+ (前略)
40
+
41
+ <html>
42
+ <head>
43
+ <meta charset="utf-8">
44
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
45
+ <meta name="viewport" content="width=device-width, initial-scale=1">
46
+
47
+ <title>タイトル</title>
48
+
49
+ <!--Boostrap-->
50
+ <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
51
+ <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
52
+ <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
53
+
54
+
55
+ </head>
56
+
57
+ <body>
58
+
59
+ <h1>メッセージ新規作成ページ</h1>
60
+
61
+ <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">
62
+ <input type="hidden" name="_token" value="tnJghx8bXaIITjnjcLIglYCChKGU8UDvaLkPyxIe">
63
+ @csrf
64
+ <label for="content">メッセージ:</label>
65
+ <input name="content" type="text" id="content">
66
+
67
+ <input type="submit" value="投稿">
68
+
69
+ </form>
70
+
71
+ (中略)
72
+
73
+ </script>
74
+ </body>
75
+ </html>
76
+
77
+ ```
78
+
79
+
80
+
81
+
36
82
  ### 試したこと
37
83
 
38
84
  https://qiita.com/marcon/items/da59ca5e289a979f8221