templates/pages/contact/index.html.twig line 1

Open in your IDE?
  1. {% extends 'pages/base.html.twig' %}
  2. {% block title %}お問い合わせ|株式会社平塚富士キッチン採用サイト{% endblock %}
  3. {% block meta_og_title %}お問い合わせ|株式会社平塚富士キッチン採用サイト{% endblock %}
  4. {% block meta_twitter_title %}お問い合わせ|株式会社平塚富士キッチン採用サイト{% endblock %}
  5. {% block meta_description %}株式会社平塚富士キッチン採用サイトのお問い合わせフォームです。ご不明な点等ございましたら、必要な情報を記入し、お問い合わせフォームよりお気軽にお問い合わせください。{% endblock %}
  6. {% block meta_og_description %}株式会社平塚富士キッチン採用サイトのお問い合わせフォームです。ご不明な点等ございましたら、必要な情報を記入し、お問い合わせフォームよりお気軽にお問い合わせください。{% endblock %}
  7. {% block body %}
  8.   <main>
  9. {#<div class="breadcrumb">
  10.   <a class="breadcrumb-item" href="{{ path('top') }}">
  11.     TOP
  12.   </a>
  13.   <a class="breadcrumb-item" href="{{ path('contact_index')}}">
  14.     お問い合わせ
  15.   </a>
  16. </div>#}
  17. {% if not retry %}
  18.     {% include "layout/_aside.html.twig" %}
  19.   {# ページコンテンツここに #}
  20.   <div class="c-contact_content">
  21.     <div class="c-contact_main-title">
  22.       {% include "components/common/_main-title.html.twig" with {
  23.       title: 'お問い合わせ',
  24.       text: '-CONTACT-',
  25.       class: 'c-main-title',
  26.       }%}
  27.     </div>
  28.     <p class="c-contact_intro-text">
  29.       下記フォームに必要事項をご記入の上、お進みください。
  30.     </p>
  31. {% else %}
  32.   {{ form_errors(form) }}
  33. {% endif %}
  34. {{ form_start(form, {
  35.   action: path('contact_confirm')
  36. }) }}
  37.   {% include "components/form/_common_field.html.twig" %}
  38.   {% include "components/form/_agreement.html.twig" %}
  39.   {% include "components/_google_recaptcha.html.twig" %}
  40.   <div class="c-contact_button-area">
  41.     <div class="c-contact-reverse_button">
  42.       {% include "components/common/_button.html.twig" with {
  43.       text: 'TOPへ戻る',
  44.       src: 'build/images/common/double_arrow_white.svg',
  45.       href: path('top'),
  46.       width: '12',
  47.       height: '10',
  48.       class: 'c-white-border-rev_button',
  49.       }%}
  50.     </div>
  51.     <button class="c-contact-submit_button" type="submit">
  52.       {% include "components/common/_button.html.twig" with {
  53.       text: '入力内容を確認する',
  54.       src: 'build/images/common/double_arrow_black.svg',
  55.       width: '12',
  56.       height: '10',
  57.       class: 'c-white_button',
  58.       }%}
  59.   </button>
  60.   </div>
  61.   {{ form_end(form) }}
  62.   </div>
  63.   </main>
  64. {% endblock %}