forms - Custom field are not showing devise rails -
<h2>sign up</h2> <%= form_for(resource, as: resource_name, url: registration_path(resource_name)) |f| %> <%= devise_error_messages! %> <div class="field"> <%=f.label :name %></br> <%=f.text_field :name , autofocus: true %> </div> <div class="field"> <%= f.label :email %><br /> <%= f.email_field :email, autofocus: true %> </div> <div class="field"> <%=f.label :user_type %></br> <%=f.select_tag (:user_type , option_for_select([["manager",1],["developer",2],["creator",3]])), autofocus: true %> </div> <div class="field"> <%= f.label :password %> <% if @minimum_password_length %> <em>(<%= @minimum_password_length %> characters minimum)</em> <% end %><br /> <%= f.password_field :password, autocomplete: "off" %> </div> <div class="field"> <%= f.label :password_confirmation %><br /> <%= f.password_field :password_confirmation, autocomplete: "off" %> </div> <div class="actions"> <%= f.submit "sign up" %> </div> <% end %> <%= render "users/shared/links" %>
above sign devise form problem add 2 new field in name , user type these 2 fields not showing in form on screen.....
Comments
Post a Comment