You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

new.html.erb 542B

123456789101112131415
  1. <h2><%= l :label_password_required %></h2>
  2. <%= form_tag({}, method: :post, class: 'tabular', id: 'sudo-form') do %>
  3. <%= hidden_field_tag '_method', request.request_method %>
  4. <%= hash_to_hidden_fields @sudo_form.original_fields %>
  5. <div class="box">
  6. <p>
  7. <label for="sudo_password"><%= l :field_password %><span class="required">*</span></label>
  8. <%= password_field_tag :sudo_password, nil, size: 25 %>
  9. </p>
  10. </div>
  11. <%= submit_tag l(:button_submit) %>
  12. <% end %>
  13. <%= javascript_tag "$('#sudo_password').focus();" %>