houdini/app/views/nonprofits/_settings_modals.html.erb
Bradley M. Kuhn 22adb4d5fd Relicense all .erb files under new project license.
The primary license of the project is changing to:
  AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later

with some specific files to be licensed under the one of two licenses:
   CC0-1.0
   LGPL-3.0-or-later

This commit is one of the many steps to relicense the entire codebase.

Documentation granting permission for this relicensing (from all past
contributors who hold copyrights) is on file with Software Freedom
Conservancy, Inc.
2018-03-25 15:10:40 -04:00

35 lines
1.3 KiB
Text

<%- # License: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later -%>
<!-- partial: nonprofits/settings_modal -->
<div class='modal fullScreen' id='settingsModal'>
<%= render 'common/modal_header', title: 'Profile Settings' %>
<%= render 'edit' %>
</div>
<%= render 'components/upload_background_image',
end_point: nonprofit_path(@nonprofit),
image_url: @nonprofit_background_image,
input_name: 'nonprofit[background_image]' %>
<div class='modal' id='uploadCarouselImages'>
<%= render 'common/modal_header', title: 'Main Image' %>
<div class='modal-body'>
<p class='u-centered'>Image size should be less than 2MB.</p>
<form class='u-centered' autosubmit action='<%= nonprofit_path(@nonprofit) %>' method='put' data-reload>
<p class='u-color--red'>
<!--= show_if (length image_upload.error) -->
<small><!--= put image_upload.error --></small>
</p>
<div class='u-inlineBlock'>
<div class='image-upload' style='background-image:url("<%= @nonprofit.main_image_url(:thumb_explore) %>")'>
<span><i class='fa fa-image'></i> Select</span>
<input type='file' name='nonprofit[main_image]'>
</div>
</div>
<hr>
<button type='submit' class='button u-marginTop--10 ' data-loading='Uploading...'>Upload</button>
</form>
</div>
</div>