+
+
+
+
+
+
+
+
+
+
+
+
+
+ Profile Settings
+
+ Edit your account details
+
+
+
+ <%= form_for @user do |f|%>
+
+
+ <%= f.label :email, nil, {:class => "control-label"}%>
+ <%= f.text_field :email, {:class => "span12"}%>
+
+
+ <%= f.label :first_name, nil, {:class => "control-label"}%>
+ <%= f.text_field :first_name, {:class => "span12"} %>
+
+
+ <%= f.label :last_name, nil, {:class => "control-label"}%>
+ <%= f.text_field :last_name, {:class => "span12"} %>
+
+
+ <%= f.label :password, nil, {:class => "control-label"}%>
+ <%= f.password_field :password, {:class => "span12", :placeholder => "Enter Password"}%>
+
+
+ <%= f.submit "Submit", {:class => "btn btn-info pull-right"} %>
+
+
+
+ <% end %>
+
+
+