]> git.openstreetmap.org Git - rails.git/commitdiff
Improve hiding of openid field on signup screen
authorTom Hughes <tom@compton.nu>
Sat, 1 May 2010 18:18:06 +0000 (19:18 +0100)
committerTom Hughes <tom@compton.nu>
Sat, 1 May 2010 18:18:06 +0000 (19:18 +0100)
app/views/user/new.html.erb
public/javascripts/openID.js

index ba068b6c3c62421f9ad62bc84a70d3d083bbc274..8f4c6d60307f0bc80ea8d3b19c7417e3fe81d5bf 100644 (file)
@@ -1,5 +1,3 @@
-<%= javascript_include_tag 'openID.js' %>
-
 <h1><%= t 'user.new.heading' %></h1>
 
 <% if Acl.find_by_address(request.remote_ip, :conditions => {:k => "no_account_creation"}) %>
   <tr><td class="fieldName"><%= t 'user.new.password' %></td><td><%= password_field('user', 'pass_crypt',{:size => 30, :maxlength => 255, :tabindex => 4}) %></td></tr>
   <tr><td class="fieldName"><%= t 'user.new.confirm password' %></td><td><%= password_field('user', 'pass_crypt_confirmation',{:size => 30, :maxlength => 255, :tabindex => 5}) %></td></tr>
   <tr><td colspan="2">&nbsp;<!--vertical spacer--></td></tr>
-  <tr><td></td><td><span class="minorNote"><a href="javascript:unhideopenID()">Associate an OpenID with your account</a></span></td></tr>
-  <tr id="openID_row-1" style="display: none"><td class="fieldName"><%= t 'user.new.openID' %></td><td><%= text_field('user', 'openid_url',{:size => 50, :maxlength => 255, :tabindex => 6, :value => @openID, :class => "openid_url"}) %></td></tr>
-  <tr id="openID_row-2" style="display: none"><td></td><td><span class="minorNote"><%= t 'user.new.openID description' %></span></td></tr>
+  <% if @openID %>
+    <tr id="openid-url"><td class="fieldName"><%= t 'user.new.openID' %></td><td><%= text_field('user', 'openid_url',{:size => 50, :maxlength => 255, :tabindex => 6, :value => @openID, :class => "openid_url"}) %></td></tr>
+    <tr id="openid-note"><td></td><td><span class="minorNote"><%= t 'user.new.openID description' %></span></td></tr>
+  <% else %>
+    <tr id="openid-prompt"><td></td><td><span class="minorNote"><%= link_to_function('Associate an OpenID with your account') { |page| page.hide 'openid-prompt'; page.show 'openid-url', 'openid-note' } %></span></td></tr>
+    <tr id="openid-url" style="display: none"><td class="fieldName"><%= t 'user.new.openID' %></td><td><%= text_field('user', 'openid_url',{:size => 50, :maxlength => 255, :tabindex => 6, :value => @openID, :class => "openid_url"}) %></td></tr>
+    <tr id="openid-note" style="display: none"><td></td><td><span class="minorNote"><%= t 'user.new.openID description' %></span></td></tr>
+  <% end %>
   <tr><td colspan="2" >&nbsp;<!--vertical spacer--></td></tr>
   <tr><td></td><td align="right"><input type="submit" value="<%= t'user.new.signup' %>" tabindex="7"></td></tr>
 </table>
 <% end %>
 
-<% if @openID %>
-<script type="text/javascript">
-unhideopenID();
-</script>
-<% end %>
-
 <%= javascript_include_tag 'https://ethnio.com/remotes/62786' %>
 
 <% end %>
index bc887666f299d2e5c5f8b0eba438296c4b87df06..007ea0209029acd5cc5a3e6bf73fedbd14110b4c 100644 (file)
@@ -20,8 +20,3 @@ function openid_signin(provider)
     }
 
 }
-
-function unhideopenID() {
-       document.getElementById("openID_row-1").style.display = "";
-       document.getElementById("openID_row-2").style.display = "";
-}