<%= form_for :mess, :url => '/mess_phoneback', :remote => true, html: { :role => :form, :id => 'form_phoneback', :data => { :model => 'cmessage' } } do |f| %>
<%= f.text_field :name, :value => 'Имя', :class => 'form-control', :onfocus => "if (this.value == 'Имя') this.value = '';", :onblur => "if (this.value == '') {this.value = 'Имя';}" %>
<%= f.text_field :mobile, :value => 'Телефон', :class => 'form-control', :onfocus => "if (this.value == 'Телефон') this.value = '';", :onblur => "if (this.value == '') {this.value = 'Телефон';}" %>
<%= f.label :kapcha, "Капча: сколько будет 2+2?", class: 'control-label' %>
<%= f.text_field :kapcha, class: 'form-control' %>
<%= f.submit 'Перезвоните мне', class: 'btn_blue', data: { disable_with: 'Отправляется...' } %>
<% end %>