app/template/default/Forgot/index.twig line 1

Open in your IDE?
  1. {#
  2. This file is part of EC-CUBE
  3. Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
  4. http://www.ec-cube.co.jp/
  5. For the full copyright and license information, please view the LICENSE
  6. file that was distributed with this source code.
  7. #}
  8. {% extends 'default_frame.twig' %}
  9. {% form_theme form 'Form/form_div_layout.twig' %}
  10. {% block main %}
  11.     <div id="contents" class="main_only">
  12.         <div class="container-fluid inner no-padding">
  13.             <div id="main">
  14.                 <h1 class="page-heading">パスワードの再発行</h1>
  15.                 <div id="top_wrap" class="container-fluid">
  16.                     <div id="top_box" class="row">
  17.                         <div id="top_box__body" class="col-md-10 col-md-offset-1">
  18.                             <p>ご登録時のメールアドレスを入力して「次へ」ボタンをクリックしてください。</p>
  19.                             <form name="form1" id="form1" method="post" action="{{ url('forgot') }}">
  20.                                 {{ form_widget(form._token) }}
  21.                                 <div id="top_box__body_inner" class="dl_table">
  22.                                     <dl id="top_box__login_email">
  23.                                         <dt>{{ form_label(form.login_email, 'メールアドレス') }}</dt>
  24.                                         <dd>
  25.                                             <div class="form-group">
  26.                                                 {{ form_widget(form.login_email) }}
  27.                                                 {{ form_errors(form.login_email) }}
  28.                                             </div>
  29.                                         </dd>
  30.                                     </dl>
  31.                                 </div>
  32.                                 {% for f in form %}
  33.                                     {% if f.vars.name matches '[^plg*]' %}
  34.                                         <div class="extra-form dl_table">
  35.                                             {{ form_row(f) }}
  36.                                         </div>
  37.                                     {% endif %}
  38.                                 {% endfor %}
  39.                                 <p><small>*パスワード再発行の通知メールが届かない場合、会員登録が仮登録の可能性がございます。本サイトからの会員登録メールを再度ご確認いただくか、お問い合わせください。</small></p>
  40.                                 <div id="top_box__footer" class="row no-padding">
  41.                                     <div id="top_box__next_button" class="btn_group col-sm-offset-4 col-sm-4">
  42.                                         <p><button type="submit" class="btn btn-primary btn-block">次のページへ</button></p>
  43.                                     </div>
  44.                                 </div>
  45.                             </form>
  46.                         </div>
  47.                     </div>
  48.                 </div>
  49.             </div>
  50.         </div>
  51.     </div>
  52. {% endblock %}