Sha256: 6c1dbb9b0be7cf5afd4d4aa3cc366509b95cf5d4656b2e56f4f47e36d4a58eb6
Contents?: true
Size: 1.17 KB
Versions: 1
Compression:
Stored size: 1.17 KB
Contents
%main.mdl-layout__content %div.mdl-grid %div.mdl-cell.mdl-cell--12-col %div#register.mdl-card = simple_form_for @registration, url: team_registration_path(@registration.team) do |f| .mdl-card__title %object.logo{ type: "image/svg+xml", data: image_path("jobshop/logo.svg") } %h4 Get started with %br> %strong Jobshop .mdl-card__supporting-text = hidden_field_tag(:registration_token, params[:registration_token]) = f.fields_for(f.object.team) do |tf| %p Pick a name for your team. It will usually be (or include) your company's name. = tf.input :name, label: "Team Name" = f.fields_for(f.object.user) do |uf| = uf.input :email %p Pick a strong password, ideally being: longer than 8 characters, of mixed upper/lower case, including numbers and symbols. = uf.input :password = uf.input :password_confirmation = f.button :submit, "Next »".html_safe
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
jobshop-0.0.37 | app/views/jobshop/teams/registrations/new.html.haml |