Sha256: a2fcf017179a465ce5151b0ceafa0c3aea76a8b5aa4d07516bcc90d1f7b1c375
Contents?: true
Size: 968 Bytes
Versions: 14
Compression:
Stored size: 968 Bytes
Contents
<div class="row"> <div class="col-lg-4 col-md-6 ml-auto mr-auto"> <%- if options[:metatags] %> <h2 class="text-center"><%%= title('Sign Up') %></h2> <% else -%> <h2 class="text-center">Sign Up</h2> <%- end %> <%%= simple_form_for(resource, as: resource_name, url: registration_path(resource_name)) do |f| %> <%%= f.error_notification %> <div class="form-group"> <%%= f.input :email, required: true, autofocus: true, input_html: { autocomplete: "email" }%> <%%= f.input :password, required: true, hint: ("#{@minimum_password_length} characters minimum" if @minimum_password_length), input_html: { autocomplete: "new-password" } %> <%%= f.input :password_confirmation, required: true, input_html: { autocomplete: "new-password" } %> </div> <div class="form-group"> <%%= f.button :submit, 'Sign up', class: 'btn btn-primary btn-block btn-lg' %> </div> <%% end %> </div> </div>
Version data entries
14 entries across 14 versions & 1 rubygems