{#
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 %}
<div id="contents" class="main_only">
<div class="container-fluid inner no-padding">
<div id="main">
<h1 class="page-heading">パスワードの再発行</h1>
<div id="top_wrap" class="container-fluid">
<div id="top_box" class="row">
<div id="top_box__body" class="col-md-10 col-md-offset-1">
<p>ご登録時のメールアドレスを入力して「次へ」ボタンをクリックしてください。</p>
<form name="form1" id="form1" method="post" action="{{ url('forgot') }}">
{{ form_widget(form._token) }}
<div id="top_box__body_inner" class="dl_table">
<dl id="top_box__login_email">
<dt>{{ form_label(form.login_email, 'メールアドレス') }}</dt>
<dd>
<div class="form-group">
{{ form_widget(form.login_email) }}
{{ form_errors(form.login_email) }}
</div>
</dd>
</dl>
</div>
{% for f in form %}
{% if f.vars.name matches '[^plg*]' %}
<div class="extra-form dl_table">
{{ form_row(f) }}
</div>
{% endif %}
{% endfor %}
<p><small>*パスワード再発行の通知メールが届かない場合、会員登録が仮登録の可能性がございます。本サイトからの会員登録メールを再度ご確認いただくか、お問い合わせください。</small></p>
<div id="top_box__footer" class="row no-padding">
<div id="top_box__next_button" class="btn_group col-sm-offset-4 col-sm-4">
<p><button type="submit" class="btn btn-primary btn-block">次のページへ</button></p>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
{% endblock %}