public
Fork of fudgestudios/bort
Description: A base rails app featuring: RESTful Authentication, Will Paginate, Rspec & Rspec-rails, Exception Notifier, Asset Packager, Cap Recipe. Put together by Fudge to remove the need for boring project setup.
Homepage: http://www.fudgestudios.com
Clone URL: git://github.com/UnderpantsGnome/bort.git
add missing openid creds
Sun Nov 02 10:26:22 -0800 2008
commit  1103567ffb3ecd6678eba06f3ef7e90b405a640e
tree    ebcc14da39b250296c001b488c0649e7bece817e
parent  60a0d0cee93f9aa688db5d291345f0e243b6a8ca
...
1
2
 
3
4
5
...
18
19
20
 
 
 
 
 
 
 
 
21
22
...
1
 
2
3
4
5
...
18
19
20
21
22
23
24
25
26
27
28
29
30
0
@@ -1,5 +1,5 @@
0
 - @user.password = @user.password_confirmation = nil
0
-= title "Signup", :h2
0
+= title 'Signup', :h2
0
 - form_for @user do |f|
0
   = f.error_messages
0
   %fieldset
0
@@ -18,5 +18,13 @@
0
       %li
0
         = f.label :password_confirmation, 'Confirm Password'
0
         = f.password_field :password_confirmation
0
+  %fieldset
0
+    %legend
0
+      Signup with OpenID
0
+    %ol
0
+      %li
0
+        %label{ :for => "openid_url" }
0
+          OpenID URL
0
+        = text_field_tag :openid_url, params[:openid_url] || params['openid.identity']
0
   .buttons
0
     = submit_tag 'Sign up'

Comments