denny/ShinyCMS-ruby

View on GitHub
plugins/ShinyCMS/app/views/shinycms/devise/registrations/new.html.erb

Summary

Maintainability
Test Coverage
<%= @page_title = t( 'shinycms.devise.registrations.new.title' ) %>

<section>
  <header>
    <h2>
      <%= @page_title %>
    </h2>
  </header>

  <%= form_for(resource, as: resource_name, url: registration_path(resource_name)) do |f| %>
    <%= render "devise/shared/error_messages", resource: resource %>

    <div class="field">
      <%= f.label :email %><br>
      <%= f.email_field :email, autofocus: true, autocomplete: 'email' %>
    </div>

    <div class="field">
      <%= f.label :username %><br>
      <%= f.text_field :username %>
    </div>

    <div class="field">
      <%= f.label :password %>
      <% if @minimum_password_length %>
      <em>(<%= @minimum_password_length %> characters minimum)</em>
      <% end %><br>
      <%= f.password_field :password, autocomplete: "new-password" %>
    </div>

    <div class="field">
      <%= f.label :password_confirmation %><br>
      <%= f.password_field :password_confirmation, autocomplete: "new-password" %>
    </div>

    <% if flash[ :show_checkbox_recaptcha ] %>
      <%= recaptcha_tags site_key: recaptcha_checkbox_site_key %>
    <% elsif recaptcha_v3_site_key.present? %>
      <%= recaptcha_v3 action: 'registrations', site_key: recaptcha_v3_site_key %>
    <% else %>
      <%= recaptcha_tags site_key: recaptcha_v2_site_key %>
    <% end %>

    <div class="actions">
      <%= f.submit "Register" %>
    </div>
  <% end %>

  <%= render "devise/shared/links" %>
<section>