Sha256: 2018a3900307f33000aef935b608ed42ac12f9dc231bd5169e24932efadab2ca
Contents?: true
Size: 851 Bytes
Versions: 2
Compression:
Stored size: 851 Bytes
Contents
<% provide(:title, "Sign Up") %> <h1>Sign Up</h1> <div class="row"> <div class="col-md-6 col-md-offset-3"> <%= form_for(:seller, url: seller_signup_path) do |f| %> <%= render 'rails_marketplace/shared/seller_error_messages' %> <%= f.label :first_name %> <%= f.text_field :first_name, class: 'form-control' %> <%= f.label :last_name %> <%= f.text_field :last_name, class: 'form-control' %> <%= f.label :email %> <%= f.email_field :email, class: 'form-control' %> <%= f.label :password %> <%= f.password_field :password, class: 'form-control' %> <%= f.label :password_confirmation %> <%= f.password_field :password_confirmation, class: 'form-control' %> <%= f.submit "Submit", class: "btn btn-primary" %> <% end %> </div> </div>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rails_marketplace-0.0.2 | app/views/rails_marketplace/seller/signup_form.html.erb |
rails_marketplace-0.0.1 | app/views/rails_marketplace/seller/signup_form.html.erb |