Sha256: 1e0ed550fd75ca0c8743fbb7e3d4110846b25426fc981bfe403a67e7de544f15

Contents?: true

Size: 948 Bytes

Versions: 10

Compression:

Stored size: 948 Bytes

Contents

<% content_for :title, rodauth.confirm_password_page_title %>

<%= form_with url: rodauth.confirm_password_path, method: :post, data: { turbo: false } do |form| %>
  <div class="form-group mb-3">
    <%= form.label "password", rodauth.password_label, class: "form-label" %>
    <%= form.password_field rodauth.password_param, value: "", id: "password", autocomplete: rodauth.password_field_autocomplete_value, required: true, class: "form-control #{"is-invalid" if rodauth.field_error(rodauth.password_param)}", aria: ({ invalid: true, describedby: "password_error_message" } if rodauth.field_error(rodauth.password_param)) %>
    <%= content_tag(:span, rodauth.field_error(rodauth.password_param), class: "invalid-feedback", id: "password_error_message") if rodauth.field_error(rodauth.password_param) %>
  </div>

  <div class="form-group mb-3">
    <%= form.submit rodauth.confirm_password_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/confirm_password.html.erb
rodauth-rails-1.4.1 lib/generators/rodauth/templates/app/views/rodauth/confirm_password.html.erb
rodauth-rails-1.4.0 lib/generators/rodauth/templates/app/views/rodauth/confirm_password.html.erb
rodauth-rails-1.3.1 lib/generators/rodauth/templates/app/views/rodauth/confirm_password.html.erb
rodauth-rails-1.3.0 lib/generators/rodauth/templates/app/views/rodauth/confirm_password.html.erb
rodauth-rails-1.2.2 lib/generators/rodauth/templates/app/views/rodauth/confirm_password.html.erb
rodauth-rails-1.2.1 lib/generators/rodauth/templates/app/views/rodauth/confirm_password.html.erb
rodauth-rails-1.2.0 lib/generators/rodauth/templates/app/views/rodauth/confirm_password.html.erb
rodauth-rails-1.1.0 lib/generators/rodauth/templates/app/views/rodauth/confirm_password.html.erb
rodauth-rails-1.0.0 lib/generators/rodauth/templates/app/views/rodauth/confirm_password.html.erb