Sha256: 020ea59cf6e158cc4030011e9df83867f088ba72b47def6c747431829a018465

Contents?: true

Size: 991 Bytes

Versions: 44

Compression:

Stored size: 991 Bytes

Contents

<% content_for :header do -%>
  <h2>User Details</h2>
<% end -%>

<div id="user_accounts">
  <h3>Accounts</h3>
  <ul>
    <% @user.accounts.each do |account| -%>
      <li>
        <%= link_to edit_account_path(account) do -%>
          <h4><%= account.name %></h4>
          <p class="edit-account">edit account</p>
        <% end -%>
      </li>
    <% end -%>
  </ul>
  <%= link_to 'Add new account', plans_path, :class => 'new-account button' %>
</div>


<div id="login_info"><h3>Login Information</h3>
  <%= semantic_form_for @user, :url => profile_path do |form| %>
    <%= form.inputs do %>
      <%= form.input :name %>
      <%= form.input :email %>
    <% end %>

    <%= form.inputs do %>
      <%= form.input :password, :label => "New password", :required => true %>
      <%= form.input :password_confirmation, :label => "Confirm password", :required => true %>
    <% end %>

    <%= form.buttons do %>
      <%= form.commit_button "Update" %>
    <% end %>
  <% end %>
</div>

Version data entries

44 entries across 44 versions & 1 rubygems

Version Path
saucy-0.2.28.1 app/views/profiles/edit.html.erb
saucy-0.2.38 app/views/profiles/edit.html.erb
saucy-0.2.36 app/views/profiles/edit.html.erb
saucy-0.2.35 app/views/profiles/edit.html.erb
saucy-0.2.34 app/views/profiles/edit.html.erb
saucy-0.2.33 app/views/profiles/edit.html.erb
saucy-0.2.32 app/views/profiles/edit.html.erb
saucy-0.2.31 app/views/profiles/edit.html.erb
saucy-0.2.30 app/views/profiles/edit.html.erb
saucy-0.2.29 app/views/profiles/edit.html.erb
saucy-0.2.28 app/views/profiles/edit.html.erb
saucy-0.2.27 app/views/profiles/edit.html.erb
saucy-0.2.26 app/views/profiles/edit.html.erb
saucy-0.2.25 app/views/profiles/edit.html.erb
saucy-0.2.24 app/views/profiles/edit.html.erb
saucy-0.2.21 app/views/profiles/edit.html.erb
saucy-0.2.20 app/views/profiles/edit.html.erb
saucy-0.2.18 app/views/profiles/edit.html.erb
saucy-0.2.17 app/views/profiles/edit.html.erb
saucy-0.2.16 app/views/profiles/edit.html.erb