You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
389 B
9 lines
389 B
= form_tag contact_send_path, class: 'contact-form' do
|
|
= emailfield :email, nil, big: true, required: true unless logged_in?
|
|
= contact_reason_select
|
|
= textfield :subject, nil, required: true, big: true
|
|
= textarea :message, nil, required: true, plain: true
|
|
.actions
|
|
= button_tag :send, value: :send
|
|
- if cancel_btn
|
|
%button.close.subdued=_'forms.actions.generic.cancel'
|
|
|