title: Контактная форма

form: name: contact

fields: name: label: Имя placeholder: Укажите свое имя autocomplete: on type: text validate: required: true

email:
  label: Имейл
  placeholder: Укажите свой имейл
  type: email
  validate:
    required: true

message:
  label: Сообщение
  placeholder: Введите сообщение
  type: textarea
  validate:
    required: true

g-recaptcha-response:
  label: Капча
  type: captcha
  recaptcha_not_validated: 'Капча не действительна!'

buttons: submit: type: submit value: Отправить reset: type: reset value: Сброс

process: captcha: true save: fileprefix: contact- dateformat: Ymd-His-u extension: txt body: "{% include 'forms/data.txt.twig' %}" email: subject: '[Контактная форма сайта] {{ form.value.name|e }}' body: "{% include 'forms/data.html.twig' %}" message: Спасибо, что связались с нами!