Hide OpenID url on signup page to make it less confusing

This commit is contained in:
Kai Krueger 2010-05-01 18:48:20 +01:00
parent 6159b48b8f
commit 799bbc3d9f
2 changed files with 13 additions and 28 deletions

View file

@ -1,27 +1,4 @@
<script type="text/javascript"> <%= javascript_include_tag 'openID.js' %>
function openid_signin(provider)
{
if (provider == 'google') {
document.forms[0].user_openid_url.value="gmail.com";
document.forms[0].submit();
} else if (provider == 'yahoo') {
document.forms[0].user_openid_url.value="yahoo.com";
document.forms[0].submit();
} else if (provider == 'myopenid') {
document.forms[0].user_openid_url.value="myopenid.com";
document.forms[0].submit();
} else if (provider == 'wordpress') {
document.forms[0].user_openid_url.value="wordpress.com";
document.forms[0].submit();
} else if (provider == 'myspace') {
document.forms[0].user_openid_url.value="myspace.com";
document.forms[0].submit();
} else if (provider == 'openid') {
document.forms[0].user_openid_url.value="http://";
}
}
</script>
<h1><%= t 'user.login.heading' %></h1> <h1><%= t 'user.login.heading' %></h1>

View file

@ -1,3 +1,5 @@
<%= javascript_include_tag 'openID.js' %>
<h1><%= t 'user.new.heading' %></h1> <h1><%= t 'user.new.heading' %></h1>
<% if Acl.find_by_address(request.remote_ip, :conditions => {:k => "no_account_creation"}) %> <% if Acl.find_by_address(request.remote_ip, :conditions => {:k => "no_account_creation"}) %>
@ -30,15 +32,21 @@
<tr><td colspan="2">&nbsp;<!--vertical spacer--></td></tr> <tr><td colspan="2">&nbsp;<!--vertical spacer--></td></tr>
<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.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 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 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><td></td><td><span class="minorNote"><%= t 'user.new.openID description' %></span></td></tr>
<tr><td colspan="2">&nbsp;<!--vertical spacer--></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>
<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> <tr><td></td><td align="right"><input type="submit" value="<%= t'user.new.signup' %>" tabindex="7"></td></tr>
</table> </table>
<% end %> <% end %>
<% if @openID %>
<script type="text/javascript">
unhideopenID();
</script>
<% end %>
<%= javascript_include_tag 'https://ethnio.com/remotes/62786' %> <%= javascript_include_tag 'https://ethnio.com/remotes/62786' %>
<% end %> <% end %>