Sha256: 16d85c638c894318849df6129fdefbda313b9d734e6775fff815b10c7f3c3c84

Contents?: true

Size: 1.29 KB

Versions: 1

Compression:

Stored size: 1.29 KB

Contents

<fieldset>
  <div class="fieldset-help">
    <legend><%= icon_tag('user') %> Profile</legend>
  </div>
  <div class="fieldset-fields">
    <%= f.input :first_name %>
    <%= f.input :last_name %>
    <%= f.input :email %>
  </div>
</fieldset>
<fieldset>
  <div class="fieldset-help">
    <legend><%= icon_tag('lock') %> Security</legend>
  </div>
  <div class="fieldset-fields">
    <%= f.input :password, hint: "(leave blank if you don't want to change it)" %>
    <%= f.input :password_confirmation, label: 'Confirm' %>
  </div>
</fieldset>
<fieldset>
  <div class="fieldset-help">
    <legend>Role</legend>
    <p class="hint">
      <%= icon_tag('info-circle') %>
      Users have different abilities depending on the access level (role) they are granted.
      <%= link_to 'Learn more', permissions_users_path %>
    </p>
  </div>
  <div class="fieldset-fields">
    <%= f.association :roles, as: :check_boxes, collection: georgia_roles_collection, label: false %>
  </div>
</fieldset>
<fieldset>
  <div class="fieldset-help">
    <legend>Notifications</legend>
  </div>
  <div class="fieldset-fields">
    <label class='checkbox'>
      <%= f.check_box :receives_notifications, class: 'boolean optional form-control' %> Will receive email notifications and reminders from Georgia CMS
    </label>
  </div>
</fieldset>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
georgia-0.8.0 app/views/georgia/users/_form.html.erb