app/template/default/Forgot/complete.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. {% block main %}
  10. <section class="p-lower-mv">
  11.   <div class="inner">
  12.     <h2 class="p-lower-mv-title"><span>パスワードの再発行</span></h2>
  13.     <div class="under bread_wrap">
  14.       <ol itemscope itemtype="https://schema.org/BreadcrumbList">
  15.         <li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
  16.           <a itemprop="item" href="{{ url('homepage') }}">
  17.             <span class="freight-neo-pro" itemprop="name">TOP</span>
  18.           </a>
  19.           <meta itemprop="position" content="1" />
  20.         </li>
  21.         <li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
  22.           <a itemprop="item" href="{{ url('forgot') }}">
  23.             <span class="freight-neo-pro" itemprop="name">パスワードの再発行</span>
  24.           </a>
  25.           <meta itemprop="position" content="2" />
  26.         </li>
  27.       </ol>
  28.     </div>
  29.     <!-- /.bread_wrap -->
  30.   </div>
  31. </section>
  32. <section class="forgot">
  33.   <div class="inner">
  34.     <p class="forgot-message">
  35.       パスワード再発行メールの送信が<span class="ib">完了しました。</span><br>
  36.       ご登録メールアドレスにパスワードを再発行するためのメールを送信いたしました。<br>
  37.       メールの内容をご確認いただきますよう、<span class="ib">お願いいたします。</span><br>
  38.       ※メールが届かない場合はメールアドレスをご確認の上、再度お試しください。
  39.     </p>
  40.   </div>
  41. </section>
  42. {% endblock %}