質問編集履歴
1
viewページの掲載
test
CHANGED
File without changes
|
test
CHANGED
@@ -2,6 +2,10 @@
|
|
2
2
|
|
3
3
|
エラーにはルーティングエラーが表示されます。
|
4
4
|
|
5
|
+
ユーザー登録の変更のViewページは正しく表示されます。
|
6
|
+
|
7
|
+
データベースへの反映もされない状況です。
|
8
|
+
|
5
9
|
どなたかご指導願います。
|
6
10
|
|
7
11
|
|
@@ -132,6 +136,134 @@
|
|
132
136
|
|
133
137
|
```
|
134
138
|
|
139
|
+
<div class="text-center">
|
140
|
+
|
141
|
+
<h2>ユーザー情報の変更</h2>
|
142
|
+
|
143
|
+
</div>
|
144
|
+
|
145
|
+
<br>
|
146
|
+
|
147
|
+
|
148
|
+
|
149
|
+
<div class="row">
|
150
|
+
|
151
|
+
<div class="col-sm-6 offset-sm-3">
|
152
|
+
|
153
|
+
|
154
|
+
|
155
|
+
<%= form_with(model: @user, local: true) do |f| %>
|
156
|
+
|
157
|
+
<%= render 'layouts/error_messages', model: f.object %>
|
158
|
+
|
159
|
+
<%# エラーメッセージ %>
|
160
|
+
|
161
|
+
|
162
|
+
|
163
|
+
<div class="form-group">
|
164
|
+
|
165
|
+
<%= f.label :name, 'ユーザー名' %>
|
166
|
+
|
167
|
+
<%= f.text_field :name, class: 'form-control' %>
|
168
|
+
|
169
|
+
</div>
|
170
|
+
|
171
|
+
|
172
|
+
|
173
|
+
<div class="form-group">
|
174
|
+
|
175
|
+
<%= f.label :email, 'メールアドレス' %>
|
176
|
+
|
177
|
+
<%= f.text_field :email, class: 'form-control' %>
|
178
|
+
|
179
|
+
</div>
|
180
|
+
|
181
|
+
|
182
|
+
|
183
|
+
<div class="form-group">
|
184
|
+
|
185
|
+
<%= f.label :password, 'パスワード' %>
|
186
|
+
|
187
|
+
<%= f.text_field :password, class: 'form-control' %>
|
188
|
+
|
189
|
+
</div>
|
190
|
+
|
191
|
+
|
192
|
+
|
193
|
+
<div class="form-group">
|
194
|
+
|
195
|
+
<%= f.label :password_confirmation, 'パスワード(確認用)' %>
|
196
|
+
|
197
|
+
<%= f.text_field :password_confirmation, class: 'form-control' %>
|
198
|
+
|
199
|
+
</div>
|
200
|
+
|
201
|
+
|
202
|
+
|
203
|
+
<div class="form-group">
|
204
|
+
|
205
|
+
<%= f.label :age, '年齢' %>
|
206
|
+
|
207
|
+
<%= f.text_field :age, class: 'form-control' %>
|
208
|
+
|
209
|
+
</div>
|
210
|
+
|
211
|
+
|
212
|
+
|
213
|
+
<div class="form-group">
|
214
|
+
|
215
|
+
<%= f.label :gender, '性別' %>
|
216
|
+
|
217
|
+
<%= f.text_field :gender, class: 'form-control' %>
|
218
|
+
|
219
|
+
</div>
|
220
|
+
|
221
|
+
|
222
|
+
|
223
|
+
<div class="form-group">
|
224
|
+
|
225
|
+
<%= f.label :month_income, 'おおよそ月収' %>
|
226
|
+
|
227
|
+
<%= f.text_field :month_income, class: 'form-control' %>
|
228
|
+
|
229
|
+
</div>
|
230
|
+
|
231
|
+
|
232
|
+
|
233
|
+
<div class="form-group">
|
234
|
+
|
235
|
+
<%= f.label :hobby, '趣味' %>
|
236
|
+
|
237
|
+
<%= f.text_field :hobby, class: 'form-control' %>
|
238
|
+
|
239
|
+
</div>
|
240
|
+
|
241
|
+
|
242
|
+
|
243
|
+
<div class="form-group">
|
244
|
+
|
245
|
+
<%= f.label :special_notes, 'その他特記事項' %>
|
246
|
+
|
247
|
+
<%= f.text_field :special_notes, class: 'form-control' %>
|
248
|
+
|
249
|
+
</div>
|
250
|
+
|
251
|
+
|
252
|
+
|
253
|
+
<%= f.submit '変更を登録する', class: 'btn btn-primary btn-block' %>
|
254
|
+
|
255
|
+
<% end %>
|
256
|
+
|
257
|
+
</div>
|
258
|
+
|
259
|
+
</div>
|
260
|
+
|
261
|
+
```
|
262
|
+
|
263
|
+
|
264
|
+
|
265
|
+
```
|
266
|
+
|
135
267
|
Rails.application.routes.draw do
|
136
268
|
|
137
269
|
root to: 'sessions#new'
|