Well, it seems I forgot to add the acts_as_authenticated to the repository on my...
[selectricity-live] / vendor / plugins / acts_as_authenticated / generators / authenticated / templates / signup.rhtml
diff --git a/vendor/plugins/acts_as_authenticated/generators/authenticated/templates/signup.rhtml b/vendor/plugins/acts_as_authenticated/generators/authenticated/templates/signup.rhtml
new file mode 100644 (file)
index 0000000..30d1053
--- /dev/null
@@ -0,0 +1,16 @@
+<%%= error_messages_for :<%= file_name %> %>
+<%% form_for :<%= file_name %> do |f| -%>
+<p><label for="login">Login</label><br/>
+<%%= f.text_field :login %></p>
+
+<p><label for="email">Email</label><br/>
+<%%= f.text_field :email %></p>
+
+<p><label for="password">Password</label><br/>
+<%%= f.password_field :password %></p>
+
+<p><label for="password_confirmation">Confirm Password</label><br/>
+<%%= f.password_field :password_confirmation %></p>
+
+<p><%%= submit_tag 'Sign up' %></p>
+<%% end -%>

Benjamin Mako Hill || Want to submit a patch?