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

Open in your IDE?
  1. {#
  2. This file is part of EC-CUBE
  3. Copyright(c) LOCKON CO.,LTD. All Rights Reserved.
  4. http://www.lockon.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-forgot">
  12.     
  13.         <div class="p-forgot__heading">
  14.             <h1 class="c-page-title">
  15.                 <span class="c-page-title__text">{{ 'パスワードの再発行'|trans }}</span>
  16.             </h1>
  17.         </div>
  18.         
  19.         <div class="p-forgot__contents">
  20.             <p class="p-forgot__description">{{ 'ご登録時のメールアドレスを入力して「次へ」ボタンをクリックしてください。<br>パスワード再発行メールを送信しますので、メールの内容をご確認の上、新しいパスワードを登録してください。'|trans|raw }}</p>
  21.             <form name="form1" id="form1" method="post" action="{{ url('forgot') }}">
  22.                 {{ form_widget(form._token) }}
  23.                 <div class="c-form is-input has-border">
  24.                     <dl class="c-form__parts u-dl-sanitize">
  25.                         <dt class="c-form__parts-label">
  26.                             {{ form_label(form.login_email, 'メールアドレス', { 'label_attr': { 'class': 'c-form__parts-label-text' }}) }}
  27.                         </dt>
  28.                         <dd class="c-form__parts-detail">
  29.                             <div class="c-form__box">
  30.                                 <div class="c-form__box-item">
  31.                                     <div class="c-text-field mdc-text-field mdc-text-field--outlined{{ has_errors(form.login_email) ? ' mdc-text-field--invalid' }}">
  32.                                         {{ form_widget(form.login_email, {'attr': { 'class': 'c-text-field__input mdc-text-field__input' }}) }}
  33.                                         <div class="mdc-notched-outline">
  34.                                             <div class="mdc-notched-outline__leading"></div>
  35.                                             <div class="mdc-notched-outline__notch">
  36.                                                 <label class="c-floating-label mdc-floating-label" for="contact_email">example@example.com</label>
  37.                                             </div>
  38.                                             <div class="mdc-notched-outline__trailing"></div>
  39.                                         </div>
  40.                                     </div>
  41.                                     {{ form_errors(form.login_email, {'label_attr': {'class': 'mdc-text-field-helper-text mdc-text-field-helper-text--validation-msg'}}) }}
  42.                                 </div>
  43.                             </div>
  44.                         </dd>
  45.                     </dl>
  46.                     <div class="c-form__actions">
  47.                         <div class="c-form__actions-item">
  48.                             <button class="c-form__button c-button is-secondary c-button--unelevated mdc-button mdc-button--unelevated" type="submit">
  49.                                 <span class="c-button__label mdc-button__label">{{ '次へ'|trans }}</span>
  50.                             </button>
  51.                         </div>
  52.                     </div>
  53.                 </div>
  54.             </form>
  55.             
  56.         </div>
  57.         
  58.     </section>
  59. {% endblock %}