{#This file is part of EC-CUBECopyright(c) EC-CUBE CO.,LTD. All Rights Reserved.http://www.ec-cube.co.jp/For the full copyright and license information, please view the LICENSEfile that was distributed with this source code.#}{% extends 'default_frame.twig' %}{% form_theme form 'Form/form_div_layout.twig' %}{% block stylesheet %} <link rel="stylesheet" href="{{ asset('assets/css/contact.css') }}">{% endblock %}{% block javascript %} <script src="{{ asset('assets/js/customer-input-validate.js') }}"></script> <script> $(function() { CustomerInputValidate.bindFormValidation($('#form1'), { emailSelector: '#login_email', wrapperSelector: '.form-input-wrapper', fieldSelectors: [ '#login_email' ], showServerErrors: {{ form.vars.submitted and not form.vars.valid ? 'true' : 'false' }} }); }); </script>{% endblock javascript %}{% block main %} <!-- breadcrumb section --> <div class="breadcrumb-section"> <div class="container-1360 border-box px-40"> <nav class="breadcrumb"> <a href="{{ url('homepage') }}" class="breadcrumb__item text-black">ホーム</a> <img src="{{ asset('assets/img/default/icons/icon-breadcrumb-arrow.svg') }}" alt=">" class="breadcrumb__separator"> <a href="{{ url('forgot') }}" class="breadcrumb__item text-black">パスワードの再発行</a> </nav> </div> </div> <!-- forgot password section --> <div class="container-1200"> <div class="contact-wrapper"> <!-- Forgot Password Title Section --> <div class="top-header-title-section"> <div class="top-header-icon-text"> <div class="top-header-icon-text"> <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_459_17915)"> <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"/> </g> <defs> <clipPath id="clip0_459_17915"> <rect width="20" height="20" fill="white"/> </clipPath> </defs> </svg> <span class="top-header-text">パスワードの再発行</span> </div> </div> <h1 class="top-header-title">FORGOT PASSWORD</h1> </div> <!-- Forgot Password Content Section --> <div class="contact-content-section"> <div class="forgot-message-wrapper w-100"> <p class="contact-notice-text w-100">{{ 'front.forgot.message1'|trans }}</p> <p class="contact-notice-text w-100">{{ 'front.forgot.message2'|trans }}</p> </div> </div> <!-- Forgot Password Form --> <div class="contact-form"> <form name="form1" id="form1" method="post" action="{{ url('forgot') }}" class="contact-form-wrapper" novalidate> {{ form_widget(form._token) }} <!-- Email Field --> <div class="form-field"> <div class="form-field-header"> <span class="form-label">{{ 'common.mail_address'|trans }}</span> <span class="required-badge">必須</span> </div> <div class="form-field-inputs"> <div class="form-input-wrapper{{ has_errors(form.login_email) ? ' error' }}"> {{ form_widget(form.login_email, {required: false, attr: {'class': 'form-input', 'placeholder': 'common.mail_address'|trans}}) }} {{ form_errors(form.login_email) }} </div> </div> </div> <!-- Submit Button --> <div class="submit-section"> <button type="submit" class="submit-btn submit-btn-primary" form="form1">{{ 'common.next'|trans }}</button> </div> </form> </div> </div> </div>{% endblock %}