Sha256: 132ffb6af33a14c02c419c2f523e5746dd6633c5d0529df0c382d584565937f5
Contents?: true
Size: 752 Bytes
Versions: 59
Compression:
Stored size: 752 Bytes
Contents
<!-- REGISTRATION FORM. --> <% if !resource.nil? %> <%= form_for(resource, as: resource.class.name.underscore, url: new_session_path(resource.class.name.underscore), remote: true, :authenticity_token => true, data: {type: "script"}, html: {id: "login_form"}) do |f| %> <div class="row" id="login_inputs"> <div class="col l8 m10 s10 offset-l2 offset-m1 offset-s1"> <%= render 'auth/modals/sign_in_inputs.html.erb', locals: {:resource => resource} %> <%= render 'auth/modals/sign_up_inputs.html.erb', locals: {:resource => resource} %> <%= render 'auth/modals/oauth_and_submit.html.erb', locals: {:resource => resource} %> </div> </div> <%= f.submit "Log In", id: "login_submit", style: "display:none;" %> <% end %> <% end %>
Version data entries
59 entries across 59 versions & 1 rubygems