Password fields hidden on users/add form when selecting an external authentication mode.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@547 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
f04225321c
commit
f335e943ad
@ -20,14 +20,16 @@
|
|||||||
<div class="box">
|
<div class="box">
|
||||||
<h3><%=l(:label_authentication)%></h3>
|
<h3><%=l(:label_authentication)%></h3>
|
||||||
<% unless @auth_sources.empty? %>
|
<% unless @auth_sources.empty? %>
|
||||||
<p><%= f.select :auth_source_id, [[l(:label_internal), ""]] + @auth_sources.collect { |a| [a.name, a.id] } %></p>
|
<p><%= f.select :auth_source_id, ([[l(:label_internal), ""]] + @auth_sources.collect { |a| [a.name, a.id] }), {}, :onchange => "if (this.value=='') {Element.show('password_fields');} else {Element.hide('password_fields');}" %></p>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
<div id="password_fields" style="<%= 'display:none;' if @user.auth_source %>">
|
||||||
<p><label for="password"><%=l(:field_password)%><span class="required"> *</span></label>
|
<p><label for="password"><%=l(:field_password)%><span class="required"> *</span></label>
|
||||||
<%= password_field_tag 'password', nil, :size => 25 %><br />
|
<%= password_field_tag 'password', nil, :size => 25 %><br />
|
||||||
<em><%= l(:text_length_between, 4, 12) %></em></p>
|
<em><%= l(:text_length_between, 4, 12) %></em></p>
|
||||||
<p><label for="password_confirmation"><%=l(:field_password_confirmation)%><span class="required"> *</span></label>
|
<p><label for="password_confirmation"><%=l(:field_password_confirmation)%><span class="required"> *</span></label>
|
||||||
<%= password_field_tag 'password_confirmation', nil, :size => 25 %></p>
|
<%= password_field_tag 'password_confirmation', nil, :size => 25 %></p>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
<!--[eoform:user]-->
|
<!--[eoform:user]-->
|
||||||
|
|
||||||
<% content_for :header_tags do %>
|
<% content_for :header_tags do %>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user