houdini/app/views/roles/_new_modal.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

37 lines
No EOL
1.5 KiB
Text

<%- # License: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later -%>
<!-- partial: common/new_role -->
<div class='modal skinny' id='newRole'>
<header class='modal-header'>
<%= render 'common/modal_close' %>
<h3>Invite a New User</h3>
</header>
<div class='modal-body'>
<form autosubmit action='/nonprofits/<%= @nonprofit.id %>/roles.json' method='post' parsley-validate data-reload>
<div class='field'>
<div class='field-inline'>
<input type="radio" name="role[name]" value="nonprofit_admin" id='roleName--admin'>
<label for='roleName--admin'><strong>Nonprofit Admin</strong></label>
</div>
<p>Full permissions, including bank payouts</p>
</div>
<div class='field'>
<div class='field-inline'>
<input type="radio" name="role[name]" value="nonprofit_associate" checked='checked' id='roleName--assoc'>
<label for='roleName--assoc'><strong>Nonprofit Associate</strong></label>
</div>
<p>Edit content and view records</p>
</div>
<p><strong>Important!<br/> Double check this email address</strong></p>
<input name='role[email]' type='email' placeholder='Email' id='role-email-field' required><br>
<input name='role[email_confirmation]' type='email' placeholder='Confirm email' id='role-email-field' required parsley-equalto='#role-email-field'>
<p class='error'></p>
<%= render 'common/modal_submit', loading: 'Creating...', text: 'Create' %>
</form>
</div>
</div>
<!-- end partial: common/new_role -->