skill-assessment-app/app/views/admin/profile/edit.html.erb

30 lines
803 B
Plaintext
Raw Normal View History

2016-08-24 12:53:21 -05:00
<%
content_for :section_title, "Edit: #{@user.name}"
2016-11-22 16:59:54 -06:00
content_for :title, "Profile - Skills Assessment Admin"
2016-08-24 12:53:21 -05:00
%>
<%= render partial: 'shared/form_model_errors', locals: {obj: @user} %>
<%= form_for @user, url: admin_profile_url, method: :post do |form| %>
<div class="form-group">
<%= form.label :name, "Full Name" %>
<%= form.text_field :name %>
</div>
<div class="form-group">
<%= form.label :email, "eMail" %>
<%= form.email_field :email %>
</div>
<div class="form-group">
<%= form.label :password, "New Password" %>
<%= form.password_field :password %>
</div>
<div class="form-group">
<%= form.label :password_confirmation, "New Password Confirmation" %>
<%= form.password_field :password_confirmation %>
</div>
<%= form.submit %>
<% end %>