houdini/app/views/settings/_privacy.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

19 lines
995 B
Text

<%- # License: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later -%>
<header class='pane-header'>
<h3>Privacy Settings</h3>
</header>
<div class='pane-inner'>
<form autosubmit action='<%= profile_path(@user.profile) %>' method='put' data-reload>
<p class='pastelBox--yellow u-padding--10 u-marginBottom--20'>To make all your donations and other donor activity private, check the option below.</p>
<input type='hidden' name='profile[anonymous]' value='false'>
<input type='checkbox' name='profile[anonymous]' <%= @user.profile.anonymous ? 'checked=checked' : '' %> id='profile-anon-input'>
<label class='profile-anon-label' for='profile-anon-input'>Make my profile anonymous.</label>
<div>
</div>
<p class='error'></p>
<button type='submit' class='button u-marginTop--5' data-loading='Updating...'>Update Privacy Settings</button>
</form>
<p class='note u-marginTop--10'>Note: we don't directly share your individual donation amounts.</p>
</div>