Added the RoR Login-Engine and activated it on the site.
[selectricity-live] / vendor / plugins / login_engine / app / views / user / _edit.rhtml
diff --git a/vendor/plugins/login_engine/app/views/user/_edit.rhtml b/vendor/plugins/login_engine/app/views/user/_edit.rhtml
new file mode 100644 (file)
index 0000000..e963d1c
--- /dev/null
@@ -0,0 +1,11 @@
+<div class="user_edit">
+  <table>
+    <%= form_input changeable(user, "firstname"), "First Name", "firstname" %>
+    <%= form_input changeable(user, "lastname"), "Last Name","lastname" %>
+    <%= form_input changeable(user, "login"), "Login ID", "login", :size => 30 %><br/>
+    <%= form_input changeable(user, "email"), "Email", "email" %>
+    <% if submit %>
+      <%= form_input :submit_button, (user.new_record? ? 'Signup' : 'Change Settings'), :class => 'two_columns' %>
+    <% end %>
+  </table>
+</div>

Benjamin Mako Hill || Want to submit a patch?