質問編集履歴
1
追記
title
CHANGED
File without changes
|
body
CHANGED
@@ -189,4 +189,63 @@
|
|
189
189
|
)
|
190
190
|
);
|
191
191
|
|
192
|
+
```
|
193
|
+
|
194
|
+
account_edit.html 一部抜粋
|
195
|
+
|
196
|
+
```html
|
197
|
+
<!-- Text input 名前-->
|
198
|
+
<div class="form-group" style="margin-top:30px;">
|
199
|
+
<label class="col-md-4 control-label" for="name">氏名 <span class="label label-danger">必須</span></label>
|
200
|
+
<div class="col-md-4">
|
201
|
+
<input name="name" class="form-control input-md" id="name" type="text" placeholder="例:鈴木太郎" value="{{ name }}">
|
202
|
+
|
203
|
+
</div>
|
204
|
+
</div>
|
205
|
+
|
206
|
+
|
207
|
+
|
208
|
+
|
209
|
+
<!-- Text input メールアドレス-->
|
210
|
+
<div class="form-group">
|
211
|
+
<label class="col-md-4 control-label" for="email">メールアドレス <span class="label label-danger">必須</span></label>
|
212
|
+
<div class="col-md-4">
|
213
|
+
<input name="email" class="form-control input-md" id="email" type="email" placeholder="例:suzuki.taro@gmail.com 半角" value="{{ email }}">
|
214
|
+
|
215
|
+
</div>
|
216
|
+
</div>
|
217
|
+
|
218
|
+
|
219
|
+
<!-- Text input パスワード-->
|
220
|
+
<div class="form-group">
|
221
|
+
<label class="col-md-4 control-label" for="password">パスワード <span class="label label-danger">必須</span></label>
|
222
|
+
<div class="col-md-4">
|
223
|
+
<input name="password" class="form-control input-md" id="password" type="password" placeholder="パスワード 半角" value="{{ password }}">
|
224
|
+
|
225
|
+
</div>
|
226
|
+
</div>
|
227
|
+
|
228
|
+
<!-- Text input 電話番号 -->
|
229
|
+
<div class="form-group">
|
230
|
+
<label class="col-md-4 control-label" for="tel">電話番号 <span class="label label-danger">必須</span></label>
|
231
|
+
<div class="col-md-4">
|
232
|
+
<input name="tel" class="form-control input-md" id="tel" type="tel" placeholder="09012345678 ハイフンなし 半角" value="{{ tel }}">
|
233
|
+
|
234
|
+
</div>
|
235
|
+
</div>
|
236
|
+
|
237
|
+
|
238
|
+
|
239
|
+
<!-- Button 送信ボタン -->
|
240
|
+
<div class="form-group">
|
241
|
+
<label class="col-md-4 control-label" for="singlebutton"></label>
|
242
|
+
<div class="col-sm-offset-5 col-sm-7 col-xs-offset-4 col-xs-8">
|
243
|
+
<button name="singlebutton" class="btn btn-primary" id="singlebutton">変更内容を保存</button>
|
244
|
+
</div>
|
245
|
+
</div>
|
246
|
+
|
247
|
+
</div>
|
248
|
+
|
249
|
+
</fieldset>
|
250
|
+
</form>
|
192
251
|
```
|