Nicolae Claudius
13 years ago
7 changed files with 62 additions and 44 deletions
@ -0,0 +1,24 @@ |
|||||||
|
.call-to-action { |
||||||
|
text-align: center; |
||||||
|
margin-top: 3em; |
||||||
|
small { |
||||||
|
font-style: italic; |
||||||
|
font-size: 80% |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
.twitter-share-button { |
||||||
|
font-size: 14px; |
||||||
|
font-weight: normal; |
||||||
|
} |
||||||
|
|
||||||
|
.incentives-unit li, |
||||||
|
.incentives-unit p |
||||||
|
{ |
||||||
|
font-size: 14px; |
||||||
|
line-height: 20px; |
||||||
|
} |
||||||
|
|
||||||
|
blockquote { |
||||||
|
font-style: italic; |
||||||
|
} |
@ -1,31 +1,23 @@ |
|||||||
<%= form_for @contact_form, :url => {:action => 'contact'}, :method => 'post' do |f| %> |
<%= simple_form_for(@contact_form, |
||||||
|
url: { action: 'contact' }, |
||||||
|
html: { method: :post, class: 'form-horizontal' } |
||||||
|
) do |f| %> |
||||||
|
|
||||||
<%= error_messages_for(@contact_form) %> |
<%= error_messages_for(@contact_form) %> |
||||||
|
|
||||||
<div style="display:none;"> |
<div style="display:none;"> |
||||||
<%= f.text_field :nickname %> |
<%= f.text_field :nickname %> |
||||||
</div> |
</div> |
||||||
|
|
||||||
<p> |
<div class="inputs"> |
||||||
<%= f.label :name, 'Your name' %> |
<%= f.input :name, label: 'Your name' %> |
||||||
<%= f.text_field :name %> |
<%= f.input :email, label: 'Your email' %> |
||||||
</p> |
<%= f.input :file, hint: 'can be attached optionally' %> |
||||||
|
<%= f.input :message, as: :text, input_html: { rows: 10 } %> |
||||||
<p> |
</div> |
||||||
<%= f.label :email, 'Your email' %> |
|
||||||
<%= f.text_field :email %> |
|
||||||
</p> |
|
||||||
|
|
||||||
<p> |
|
||||||
<%= f.label :file %> |
|
||||||
<%= f.file_field :file %> |
|
||||||
<i>can be attached optionally</i> |
|
||||||
</p> |
|
||||||
|
|
||||||
<p> |
|
||||||
<%= f.label :message %> |
|
||||||
<%= f.text_area :message, :rows => 10 %> |
|
||||||
</p> |
|
||||||
|
|
||||||
<p><%= f.submit 'Send', :class => 'btn-primary' %></p> |
<div class="form-actions"> |
||||||
|
<%= f.submit 'Send', :class => 'btn btn-primary' %> |
||||||
|
</div> |
||||||
|
|
||||||
<% end %> |
<% end %> |
||||||
|
Loading…
Reference in new issue