Sha256: 29448c74513855b7763731894de6a8aac0eb1abf62ce6c7a1db7789cb7dde1bf
Contents?: true
Size: 1.27 KB
Versions: 91
Compression:
Stored size: 1.27 KB
Contents
<%= render 'account/shared/workflow/box' do |box| %> <% box.title t('devise.headers.create_account') %> <% box.body do %> <% within_fields_namespace(:sign_up) do %> <%= form_for resource, as: resource_name, url: registration_path(resource_name), html: {class: 'form'} do |f| %> <%= render 'account/shared/notices' %> <%= render 'account/shared/forms/errors', form: f %> <%= render 'shared/fields/email_field', form: f, method: :email, options: {autofocus: true} do %> <% content_for :help do %> <%= link_to t('devise.links.have_account'), new_user_session_path %> <% end %> <% end %> <div class="grid md:grid-cols-2 gap-5"> <div> <%= render 'shared/fields/password_field', form: f, method: :password, options: {show_strength_indicator: true} %> </div> <div> <%= render 'shared/fields/password_field', form: f, method: :password_confirmation, other_options: {required: true, error: f.object.errors.full_messages_for(:password).first, hide_custom_error: true} %> </div> </div> <%= f.submit t('global.buttons.sign_up'), class: 'button full' %> <% end %> <%= render 'devise/shared/oauth', verb: 'Sign Up' %> <% end %> <% end %> <% end %>
Version data entries
91 entries across 91 versions & 1 rubygems