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 stylesheet %}
  11.     <link rel="stylesheet" href="{{ asset('assets/css/contact.css') }}">
  12. {% endblock %}
  13. {% block main %}
  14.   <!-- breadcrumb section -->
  15.   <div class="breadcrumb-section">
  16.     <div class="container-1360 border-box px-40">
  17.       <nav class="breadcrumb">
  18.         <a href="{{ url('homepage') }}" class="breadcrumb__item text-black">ホーム</a>
  19.         <img src="{{ asset('assets/img/default/icons/icon-breadcrumb-arrow.svg') }}" alt=">" class="breadcrumb__separator">
  20.         <a href="{{ url('forgot') }}" class="breadcrumb__item text-black">パスワードの再発行</a>
  21.       </nav>
  22.     </div>
  23.   </div>
  24.   <!-- forgot password section -->
  25.   <div class="container-1200">
  26.     <div class="contact-wrapper">
  27.       <!-- Forgot Password Title Section -->
  28.       <div class="top-header-title-section">
  29.         <div class="top-header-icon-text">
  30.           <div class="top-header-icon-text">
  31.             <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
  32.               <g clip-path="url(#clip0_459_17915)">
  33.               <path d="M15 6.66667V5C15 2.23858 12.7614 0 10 0C7.23858 0 5 2.23858 5 5V6.66667M15 6.66667H5M15 6.66667H16.6667C17.5871 6.66667 18.3333 7.41286 18.3333 8.33333V16.6667C18.3333 17.5871 17.5871 18.3333 16.6667 18.3333H3.33333C2.41286 18.3333 1.66667 17.5871 1.66667 16.6667V8.33333C1.66667 7.41286 2.41286 6.66667 3.33333 6.66667H5M10 13.3333V15M10 13.3333V11.6667M10 13.3333H11.6667M10 13.3333H8.33333" stroke="#00A854" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
  34.               </g>
  35.               <defs>
  36.               <clipPath id="clip0_459_17915">
  37.               <rect width="20" height="20" fill="white"/>
  38.               </clipPath>
  39.               </defs>
  40.             </svg>
  41.             <span class="top-header-text">パスワードの再発行</span>
  42.           </div>
  43.         </div>
  44.         <h1 class="top-header-title">FORGOT PASSWORD</h1>
  45.       </div>
  46.       <!-- Forgot Password Content Section -->
  47.       <div class="contact-content-section">
  48.         <div class="forgot-message-wrapper w-100">
  49.           <p class="contact-notice-text w-100">{{ 'front.forgot.message1'|trans }}</p>
  50.           <p class="contact-notice-text w-100">{{ 'front.forgot.message2'|trans }}</p>
  51.         </div>
  52.       </div>
  53.       <!-- Forgot Password Form -->
  54.       <div class="contact-form">
  55.         <form name="form1" id="form1" method="post" action="{{ url('forgot') }}" class="contact-form-wrapper">
  56.           {{ form_widget(form._token) }}
  57.           <!-- Email Field -->
  58.           <div class="form-field">
  59.             <div class="form-field-header">
  60.               <span class="form-label">{{ 'common.mail_address'|trans }}</span>
  61.               <span class="required-badge">必須</span>
  62.             </div>
  63.             <div class="form-field-inputs">
  64.               <div class="form-input-wrapper{{ has_errors(form.login_email) ? ' error' }}">
  65.                 {{ form_widget(form.login_email, {'attr': {'class': 'form-input', 'placeholder': 'common.mail_address'|trans}}) }}
  66.                 {{ form_errors(form.login_email) }}
  67.               </div>
  68.             </div>
  69.           </div>
  70.             <!-- Submit Button -->
  71.             <div class="submit-section">
  72.                 <button type="submit" class="submit-btn submit-btn-primary" form="form1">{{ 'common.next'|trans }}</button>
  73.             </div>
  74.         </form>
  75.       </div>
  76.     </div>
  77.   </div>
  78. {% endblock %}