Sha256: 34eb33083e5658e4a9d3f184beb46ad58476a7e392e8b39abdf3a1d54b4f285a

Contents?: true

Size: 1.11 KB

Versions: 10

Compression:

Stored size: 1.11 KB

Contents

<% content_for :title, rodauth.resend_verify_account_page_title %>

<%= form_with url: rodauth.verify_account_resend_path, method: :post, data: { turbo: false } do |form| %>
  <%== rodauth.verify_account_resend_explanatory_text %>

  <% if params[rodauth.login_param] %>
    <%= form.hidden_field rodauth.login_param, value: params[rodauth.login_param] %>
  <% else %>
    <div class="form-group mb-3">
      <%= form.label "login", rodauth.login_label, class: "form-label" %>
      <%= form.email_field rodauth.login_param, value: params[rodauth.login_param], id: "login", autocomplete: "email", required: true, class: "form-control #{"is-invalid" if rodauth.field_error(rodauth.login_param)}", aria: ({ invalid: true, describedby: "login_error_message" } if rodauth.field_error(rodauth.login_param)) %>
      <%= content_tag(:span, rodauth.field_error(rodauth.login_param), class: "invalid-feedback", id: "login_error_message") if rodauth.field_error(rodauth.login_param) %>
    </div>
  <% end %>

  <div class="form-group mb-3">
    <%= form.submit rodauth.verify_account_resend_button, class: "btn btn-primary" %>
  </div>
<% end %>

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
rodauth-rails-1.4.2 lib/generators/rodauth/templates/app/views/rodauth/verify_account_resend.html.erb
rodauth-rails-1.4.1 lib/generators/rodauth/templates/app/views/rodauth/verify_account_resend.html.erb
rodauth-rails-1.4.0 lib/generators/rodauth/templates/app/views/rodauth/verify_account_resend.html.erb
rodauth-rails-1.3.1 lib/generators/rodauth/templates/app/views/rodauth/verify_account_resend.html.erb
rodauth-rails-1.3.0 lib/generators/rodauth/templates/app/views/rodauth/verify_account_resend.html.erb
rodauth-rails-1.2.2 lib/generators/rodauth/templates/app/views/rodauth/verify_account_resend.html.erb
rodauth-rails-1.2.1 lib/generators/rodauth/templates/app/views/rodauth/verify_account_resend.html.erb
rodauth-rails-1.2.0 lib/generators/rodauth/templates/app/views/rodauth/verify_account_resend.html.erb
rodauth-rails-1.1.0 lib/generators/rodauth/templates/app/views/rodauth/verify_account_resend.html.erb
rodauth-rails-1.0.0 lib/generators/rodauth/templates/app/views/rodauth/verify_account_resend.html.erb