negos_app/app/views/public/my_account/_step3.html.haml
2016-02-16 21:09:48 +01:00

40 lines
1.4 KiB
Plaintext
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

-@customer = @customer || current_customer
-@customer.step3 = true
= semantic_form_for [:public, @customer] do |f|
%p
Votre inscription est terminée,noubliez pas dindiquer vos besoins actuels :
%h2{:style => "text-align:center;"}
Votre contribution est indispensable, pour que
%br
NEGOS puisse sadapter à vos besoins
%p Il ne sagit en aucun cas dun engagement
%p
=f.inputs do
=f.hidden_field :step3
.needs
=f.input :need_1, :label => "1er besoin : ",:as => :select, :collection => [ "Materiel professionnel", "Matériel informatique", "Achat de véhicules", "Energie"]
=f.input :need_2, :label => "2ième besoin : ",:as => :select, :collection => [ "Materiel professionnel", "Matériel informatique", "Achat de véhicules", "Energie"]
=f.input :need_3, :label => "3ième besoin : ", :placeholder => "Autre, précisez ",:rows => 5, :input_html => {:style => "height:100px;"}
%p Vous serez en collaboration avec un expert dans votre domaine qui vous conseillera et vous permettra de mettre en œuvre toutes les possibilités.
: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