Sha256: 37d020885741bc0bec8bb278e55c7d6dfa9e7102f54c77ea6b30eedb45d4d57c
Contents?: true
Size: 974 Bytes
Versions: 14
Compression:
Stored size: 974 Bytes
Contents
<% title 'Change your password' meta_description '...' heading 'Change your password' %> <div class="row"> <div class="col-sm-4"> <%= form_for resource, as: resource_name, url: password_path(resource_name), html: {method: :put} do |f| %> <%= f.hidden_field :reset_password_token %> <div class="form-group"> <%= f.label :password, 'New password' %> <%= f.password_field :password, maxlength: 128, class: 'form-control', autofocus: true, data: { 'rule-required' => 'true', 'rule-minlength' => '8', 'rule-maxlength' => '128' } %> </div> <%= button_tag type: 'submit', class: 'btn btn-primary' do %> Send <% end %> <% end %> </div> <div class="col-sm-6 col-sm-offset-2"> <%= render 'devise/shared/links' %> </div> </div>
Version data entries
14 entries across 14 versions & 1 rubygems