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

Open in your IDE?
  1. {#
  2. This file is part of EC-CUBE
  3. Copyright(c) 2000-2015 LOCKON CO.,LTD. All Rights Reserved.
  4. http://www.lockon.co.jp/
  5. This program is free software; you can redistribute it and/or
  6. modify it under the terms of the GNU General Public License
  7. as published by the Free Software Foundation; either version 2
  8. of the License, or (at your option) any later version.
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with this program; if not, write to the Free Software
  15. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  16. #}
  17. {% extends 'default_frame.twig' %}
  18. {% block main %}
  19. <div class="login_box login">
  20.                 <h2 class="page-heading">パスワードの再発行</h2>
  21.         <div class="container-fluid inner no-padding">
  22.             <div id="main">
  23.                 <div id="top_wrap" class="container-fluid">
  24.                     <div id="top_box" class="row">
  25.                         <div id="top_box__body" class="col-md-10 col-md-offset-1">
  26.                             <p><span>メールアドレスを入力して</span><span>「次へ」ボタンをクリックしてください。</span></p>
  27.                             <p><span>※新しくパスワードを発行いたしますので、</span><span>お忘れになったパスワードは</span><span>ご利用できなくなります。</span></p>
  28.  <p><span>※ログインができない場合は、</span><span>下記までお問い合わせください。</span><br><span>お電話:{{ BaseInfo.phone_number }} </span><span>メール:<a href="mailto:{{ BaseInfo.email02 }}">{{ BaseInfo.email02 }}</a>
  29. </span></p>
  30.                             <form name="form1" id="form1" method="post" action="{{ url('forgot') }}">
  31.                                 {{ form_widget(form._token) }}
  32.                                 <div id="top_box__body_inner" class="dl_table">
  33.                                     <dl id="top_box__login_email">
  34.                                         <dt>{{ form_label(form.login_email) }}</dt>
  35.                                         <dd>
  36.                                             <div class="form-group">
  37.                                                 {{ form_widget(form.login_email) }}
  38.                                                 {{ form_errors(form.login_email) }}
  39.                                             </div>
  40.                                         </dd>
  41.                                     </dl>
  42.                                 </div>
  43.                                 {% for f in form %}
  44.                                     {% if f.vars.name matches '[^plg*]' %}
  45.                                         <div class="extra-form dl_table">
  46.                                             {{ form_row(f) }}
  47.                                         </div>
  48.                                     {% endif %}
  49.                                 {% endfor %}
  50.                                 <div id="top_box__footer" class="row no-padding">
  51.                                 <div id="top_box__next_button" class="btn_group col-sm-offset-4 col-sm-4">
  52.                                     <p><button type="submit" class="def_button3">次のページへ</button></p>
  53.                                 </div>
  54.                                 </div>
  55.                             </form>
  56.                         </div><!-- /.col -->
  57.                     </div><!-- /.row -->
  58.                 </div>
  59.             </div>
  60.         </div>
  61.     </div>
  62. {% endblock %}