app/template/default/PostCarrier42/Resource/template/Mailmaga/postcarrier_unsubscribe.twig line 1

Open in your IDE?
  1. {#
  2.  This file is part of the PostCarrier
  3.  Copyright(c) IPLOGIC CO.,LTD. All Rights Reserved.
  4.  http://www.iplogic.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. {% block main %}
  10.     <div class="ec-role">
  11.         <div class="ec-pageHeader">
  12.             <h1>{{ 'メルマガ配信停止'|trans }}</h1>
  13.         </div>
  14.         <div class="ec-off2Grid">
  15.             <div class="ec-off2Grid__cell">
  16.                 <form method="post" id="postcarrier_mailmaga" action="{{ path('postcarrier_mailmaga') }}">
  17.                     {{ form_widget(form._token) }}
  18.                     <div class="ec-reportHeading">
  19.                         <h3 class="unsubscribe_subtitle">{{ 'メルマガ停止の手続はこちら'|trans }}</h3>
  20.                     </div>
  21.                     <div>
  22.                         <div class="ec-halfInput{{ has_errors(form.email) ? ' error'}}" style="text-align: center;">
  23.                             {{ form_widget(form.email, {'attr':{'placeholder':"停止メールアドレス", 'size':20}}) }}
  24.                         </div>
  25.                     </div>
  26.                     <div class="ec-registerRole__actions">
  27.                         <div class="ec-off4Grid">
  28.                             <div class="ec-off4Grid__cell">
  29.                                 <button class="ec-blockBtn--action" type="submit" name="action" value="unsubscribe">{{ '解除'|trans }}</button>
  30.                             </div>
  31.                         </div>
  32.                     </div>
  33.                 </form>
  34.             </div>
  35.         </div>
  36.     </div>
  37. {% endblock %}