_picture_form.html.erb 564 B

1234567891011121314151617
  1. <%= bootstrap_form_for(@user) do |f| %>
  2. <%= render 'shared/error_messages', object: f.object %>
  3. <%= image_tag @user.picture.url if @user.picture? %>
  4. <%= f.file_field :picture, accept: 'image/jpeg,image/gif,image/png' %>
  5. <%= f.submit "Save picture", class: "btn btn-primary" %>
  6. <% end %>
  7. <script type="text/javascript">
  8. $('#user_picture').bind('change', function() {
  9. var size_in_megabytes = this.files[0].size/1024/1024;
  10. if (size_in_megabytes > 5) {
  11. alert('Maximum file size is 5MB. Please choose a smaller file.');
  12. }
  13. });
  14. </script>