{#
This file is part of EC-CUBE
Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
http://www.ec-cube.co.jp/
For the full copyright and license information, please view the LICENSE
file that was distributed with this source code.
#}
{% extends 'default_frame.twig' %}
{% form_theme form 'Form/form_div_layout.twig' %}
{% block main %}
<section class="p-lower-mv">
<div class="inner">
<h2 class="p-lower-mv-title"><span>パスワードの再発行</span></h2>
<div class="under bread_wrap">
<ol itemscope itemtype="https://schema.org/BreadcrumbList">
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<a itemprop="item" href="{{ url('homepage') }}">
<span class="freight-neo-pro" itemprop="name">TOP</span>
</a>
<meta itemprop="position" content="1" />
</li>
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<a itemprop="item" href="{{ url('forgot') }}">
<span class="freight-neo-pro" itemprop="name">パスワードの再発行</span>
</a>
<meta itemprop="position" content="2" />
</li>
</ol>
</div>
<!-- /.bread_wrap -->
</div>
</section>
<section class="forgot">
<div class="inner">
<div class="forgot-form">
<form name="form1" id="form1" method="post" action="{{ url('forgot') }}">
{{ form_widget(form._token) }}
<p class="forgot-message">{{ 'ご登録時のメールアドレスを入力して「次へ」ボタンをクリックしてください。'|trans }}<br>{{ '※パスワード再発行メールを送信します。<span class=ib>メールの内容をご確認の上、新しいパスワードを登録してください。</span>'|trans|raw }}</p>
<dl class="p-form-list">
<dt>
{{ form_label(form.login_email, 'メールアドレス', { 'label_attr': { 'class': 'ec-label' }}) }}
</dt>
<dd>
<div class="form-email{{ has_errors(form.login_email) ? ' error' }}">
{{ form_widget(form.login_email, {'attr': {'placeholder' : 'sample@mail.com' }}) }}
{{ form_errors(form.login_email) }}
</div>
</dd>
</dl>
<div class="p-button green form">
<button type="submit">{{ '次へ'|trans }}</button>
</div>
</form>
</div>
</div>
</section>
{% endblock %}