Signup


<%= form_for(User.new, url: signup_path) do |f| %>
<%= f.label :name, "Full Name", class: "form-label text-left" %> <%= f.text_field :name, class: "form-control", placeholder: "Full Name" %>
<%= f.label :email, "Email", class: "form-label text-left" %> <%= f.text_field :email, class: "form-control", placeholder: "Email" %>
<%= f.label :password, "Password", class: "form-label text-left" %> <%= f.password_field :password, class: "form-control", placeholder: "Password" %>
<%= f.label :password, "Password Confirmation", class: "form-label text-left" %> <%= f.password_field :password, class: "form-control", placeholder: "Password Confirmation" %>
<%= f.submit "Signup", class: "btn btn-outline-primary btn-block btn-pill" %>
<% end %>