{#
This file is part of EC-CUBE
Copyright(c) 2000-2015 LOCKON CO.,LTD. All Rights Reserved.
http://www.lockon.co.jp/
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#}
{% extends 'default_frame.twig' %}
{% block main %}
<div class="login_box login">
<h2 class="page-heading">パスワードの再発行</h2>
<div class="container-fluid inner no-padding">
<div id="main">
<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><span>メールアドレスを入力して</span><span>「次へ」ボタンをクリックしてください。</span></p>
<p><span>※新しくパスワードを発行いたしますので、</span><span>お忘れになったパスワードは</span><span>ご利用できなくなります。</span></p>
<p><span>※ログインができない場合は、</span><span>下記までお問い合わせください。</span><br><span>お電話:{{ BaseInfo.phone_number }} </span><span>メール:<a href="mailto:{{ BaseInfo.email02 }}">{{ BaseInfo.email02 }}</a>
</span></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 %}
<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="def_button3">次のページへ</button></p>
</div>
</div>
</form>
</div><!-- /.col -->
</div><!-- /.row -->
</div>
</div>
</div>
</div>
{% endblock %}