Sha256: 430aeb175d15c18f53b339710bd2379aed58568ebbde9e507a659bd0c80512b8

Contents?: true

Size: 950 Bytes

Versions: 5

Compression:

Stored size: 950 Bytes

Contents

<% content_for :page_header do %>
  <h1>Account Details</h1>
<% end %>

<%= simple_form_for(resource, :as => resource_name, :url => user_registration_path, :html => { :method => :put }) do |f| %>
  <% if f.error_notification -%> 
    <div class="alert alert-error fade in">
      <strong>Wait don't go!</strong> There was a problem with your submission. Please review the errors below:
      <a class="close" data-dismiss="alert" href="#">&times;</a>
    </div>
  <% end -%>

  <%= render partial: 'form_attributes', locals: {f: f} %>

  <%= render partial: 'form_password_management', locals: {f: f} %>

  <div class="row">
    <div class="span12 form-actions">
      <%= f.submit class: 'btn btn-primary', value: 'Update My Account' %>
      <%= link_to 'Cancel', person_path(current_user.person), class: 'btn btn-link' %>
    </div>
  </div>

<% end %>

<%= render partial: 'form_account_deactivation', locals: { resource_name: resource_name } %>

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
curate-0.6.5 app/views/registrations/edit.html.erb
curate-0.6.4 app/views/registrations/edit.html.erb
curate-0.6.3 app/views/registrations/edit.html.erb
curate-0.6.1 app/views/registrations/edit.html.erb
curate-0.6.0 app/views/registrations/edit.html.erb