質問編集履歴

1

追記

2018/02/19 12:00

投稿

dog57
dog57

スコア131

test CHANGED
File without changes
test CHANGED
@@ -381,3 +381,121 @@
381
381
 
382
382
 
383
383
  ```
384
+
385
+
386
+
387
+ account_edit.html 一部抜粋
388
+
389
+
390
+
391
+ ```html
392
+
393
+ <!-- Text input 名前-->
394
+
395
+ <div class="form-group" style="margin-top:30px;">
396
+
397
+ <label class="col-md-4 control-label" for="name">氏名 <span class="label label-danger">必須</span></label>
398
+
399
+ <div class="col-md-4">
400
+
401
+ <input name="name" class="form-control input-md" id="name" type="text" placeholder="例:鈴木太郎" value="{{ name }}">
402
+
403
+
404
+
405
+ </div>
406
+
407
+ </div>
408
+
409
+
410
+
411
+
412
+
413
+
414
+
415
+
416
+
417
+ <!-- Text input メールアドレス-->
418
+
419
+ <div class="form-group">
420
+
421
+ <label class="col-md-4 control-label" for="email">メールアドレス <span class="label label-danger">必須</span></label>
422
+
423
+ <div class="col-md-4">
424
+
425
+ <input name="email" class="form-control input-md" id="email" type="email" placeholder="例:suzuki.taro@gmail.com 半角" value="{{ email }}">
426
+
427
+
428
+
429
+ </div>
430
+
431
+ </div>
432
+
433
+
434
+
435
+
436
+
437
+ <!-- Text input パスワード-->
438
+
439
+ <div class="form-group">
440
+
441
+ <label class="col-md-4 control-label" for="password">パスワード <span class="label label-danger">必須</span></label>
442
+
443
+ <div class="col-md-4">
444
+
445
+ <input name="password" class="form-control input-md" id="password" type="password" placeholder="パスワード 半角" value="{{ password }}">
446
+
447
+
448
+
449
+ </div>
450
+
451
+ </div>
452
+
453
+
454
+
455
+ <!-- Text input 電話番号 -->
456
+
457
+ <div class="form-group">
458
+
459
+ <label class="col-md-4 control-label" for="tel">電話番号 <span class="label label-danger">必須</span></label>
460
+
461
+ <div class="col-md-4">
462
+
463
+ <input name="tel" class="form-control input-md" id="tel" type="tel" placeholder="09012345678 ハイフンなし 半角" value="{{ tel }}">
464
+
465
+
466
+
467
+ </div>
468
+
469
+ </div>
470
+
471
+
472
+
473
+
474
+
475
+
476
+
477
+ <!-- Button 送信ボタン -->
478
+
479
+ <div class="form-group">
480
+
481
+ <label class="col-md-4 control-label" for="singlebutton"></label>
482
+
483
+ <div class="col-sm-offset-5 col-sm-7 col-xs-offset-4 col-xs-8">
484
+
485
+ <button name="singlebutton" class="btn btn-primary" id="singlebutton">変更内容を保存</button>
486
+
487
+ </div>
488
+
489
+ </div>
490
+
491
+
492
+
493
+ </div>
494
+
495
+
496
+
497
+ </fieldset>
498
+
499
+ </form>
500
+
501
+ ```