Sha256: d329bda5ebc022f8bdd7836597469b2fec0443c3cf4b421bff33d18f5c35288b
Contents?: true
Size: 853 Bytes
Versions: 4
Compression:
Stored size: 853 Bytes
Contents
<%- if options[:metatags] %> h2.text-center = title('Change your password') <% else -%> h2.text-center Change your password <%- end %> = simple_form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :put }) do |f| = f.error_notification = f.input :reset_password_token, as: :hidden = f.full_error :reset_password_token .form-group = f.input :password, label: 'New password', required: true, autofocus: true, hint: ("#{@minimum_password_length} characters minimum" if @minimum_password_length), input_html: { autocomplete: "new-password" } = f.input :password_confirmation, label: 'Confirm your new password', required: true, input_html: { autocomplete: 'new-password' } .form-group = f.button :submit, 'Change my password', class: 'btn btn-primary btn-block btn-lg' = render 'devise/shared/links'
Version data entries
4 entries across 4 versions & 1 rubygems