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. <section class="p-lower-mv">
  12.   <div class="inner">
  13.     <h2 class="p-lower-mv-title"><span>パスワードの再発行</span></h2>
  14.     <div class="under bread_wrap">
  15.       <ol itemscope itemtype="https://schema.org/BreadcrumbList">
  16.         <li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
  17.           <a itemprop="item" href="{{ url('homepage') }}">
  18.             <span class="freight-neo-pro" itemprop="name">TOP</span>
  19.           </a>
  20.           <meta itemprop="position" content="1" />
  21.         </li>
  22.         <li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
  23.           <a itemprop="item" href="{{ url('forgot') }}">
  24.             <span class="freight-neo-pro" itemprop="name">パスワードの再発行</span>
  25.           </a>
  26.           <meta itemprop="position" content="2" />
  27.         </li>
  28.       </ol>
  29.     </div>
  30.     <!-- /.bread_wrap -->
  31.   </div>
  32. </section>
  33. <section class="forgot">
  34.   <div class="inner">
  35.     <div class="forgot-form">
  36.       <form name="form1" id="form1" method="post" action="{{ url('forgot') }}">
  37.         {{ form_widget(form._token) }}
  38.         <p class="forgot-message">{{ 'ご登録時のメールアドレスを入力して「次へ」ボタンをクリックしてください。'|trans }}<br>{{ '※パスワード再発行メールを送信します。<span class=ib>メールの内容をご確認の上、新しいパスワードを登録してください。</span>'|trans|raw }}</p>
  39.         <dl class="p-form-list">
  40.           <dt>
  41.             {{ form_label(form.login_email, 'メールアドレス', { 'label_attr': { 'class': 'ec-label' }}) }}
  42.           </dt>
  43.           <dd>
  44.             <div class="form-email{{ has_errors(form.login_email) ? ' error' }}">
  45.               {{ form_widget(form.login_email, {'attr': {'placeholder' : 'sample@mail.com' }}) }}
  46.               {{ form_errors(form.login_email) }}
  47.             </div>
  48.           </dd>
  49.         </dl>
  50.         <div class="p-button green form">
  51.           <button type="submit">{{ '次へ'|trans }}</button>
  52.         </div>
  53.       </form>
  54.     </div>
  55.   </div>
  56. </section>
  57. {% endblock %}