Sign up
<%= form_for @cpaneluser, :url => {:action => "create_user"} do |f| %>
<%= f.label :email, t("client_management.email") + ":", :class => "text-input" %>
<%= f.text_field :email %>
<%= f.label :password, t("client_management.password") + ":", :class => "text-input" %>
<%= f.password_field :password %>
<%= f.label :password_confirmation, t("client_management.confirm_password") + ":", :class => "text-input" %>
<%= f.password_field :password_confirmation %>
<%= f.label :fullname, t("client_management.fullname") + ":", :class => "text-input" %>
<%= f.text_field :fullname %>
<%= f.submit "Signup", :class => "btn btn-success" %>
<% end %>