negos_app/app/views/public/my_account/_step3.html.haml
Nicolas Bally 772e87ffb7 initial
2015-11-14 00:08:54 +01:00

35 lines
798 B
Plaintext

.center.padding.white
-@customer = @customer || current_customer
-@customer.step3 = true
= semantic_form_for [:public, @customer] do |f|
%h2 Peut être avez-vous déjà des besoins ?
%p
Vous pouvez indiquer ci-dessous 3 de vos besoins actuels, que ce soit en équipement ou en service :
=f.inputs do
=f.hidden_field :step3
.needs
=f.text_area :need_1
=f.text_area :need_2
=f.text_area :need_3
:scss
.needs{
textarea{
width:auto;
padding:2.5%;
display:block;
width:95%;
border-radius:5px;
margin-bottom:1em;
}
}
=f.submit "Sauvegarder", :class => "btn btn-primary"
%br