kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
2.1 KiB
45 lines
2.1 KiB
19 years ago
|
<%= error_messages_for 'auth_source' %>
|
||
|
|
||
|
<div class="box">
|
||
|
<!--[form:auth_source]-->
|
||
18 years ago
|
<p><label for="auth_source_name"><%=l(:field_name)%> <span class="required">*</span></label>
|
||
19 years ago
|
<%= text_field 'auth_source', 'name' %></p>
|
||
|
|
||
18 years ago
|
<p><label for="auth_source_host"><%=l(:field_host)%> <span class="required">*</span></label>
|
||
19 years ago
|
<%= text_field 'auth_source', 'host' %></p>
|
||
|
|
||
18 years ago
|
<p><label for="auth_source_port"><%=l(:field_port)%> <span class="required">*</span></label>
|
||
17 years ago
|
<%= text_field 'auth_source', 'port', :size => 6 %> <%= check_box 'auth_source', 'tls' %> LDAPS</p>
|
||
19 years ago
|
|
||
18 years ago
|
<p><label for="auth_source_account"><%=l(:field_account)%></label>
|
||
19 years ago
|
<%= text_field 'auth_source', 'account' %></p>
|
||
|
|
||
18 years ago
|
<p><label for="auth_source_account_password"><%=l(:field_password)%></label>
|
||
17 years ago
|
<%= password_field 'auth_source', 'account_password', :name => 'ignore',
|
||
|
:value => ((@auth_source.new_record? || @auth_source.account_password.blank?) ? '' : ('x'*15)),
|
||
|
:onfocus => "this.value=''; this.name='auth_source[account_password]';",
|
||
|
:onchange => "this.name='auth_source[account_password]';" %></p>
|
||
19 years ago
|
|
||
18 years ago
|
<p><label for="auth_source_base_dn"><%=l(:field_base_dn)%> <span class="required">*</span></label>
|
||
19 years ago
|
<%= text_field 'auth_source', 'base_dn', :size => 60 %></p>
|
||
|
|
||
18 years ago
|
<p><label for="auth_source_onthefly_register"><%=l(:field_onthefly)%></label>
|
||
|
<%= check_box 'auth_source', 'onthefly_register' %></p>
|
||
17 years ago
|
</div>
|
||
19 years ago
|
|
||
17 years ago
|
<fieldset class="box"><legend><%=l(:label_attribute_plural)%></legend>
|
||
18 years ago
|
<p><label for="auth_source_attr_login"><%=l(:field_login)%> <span class="required">*</span></label>
|
||
19 years ago
|
<%= text_field 'auth_source', 'attr_login', :size => 20 %></p>
|
||
|
|
||
18 years ago
|
<p><label for="auth_source_attr_firstname"><%=l(:field_firstname)%></label>
|
||
19 years ago
|
<%= text_field 'auth_source', 'attr_firstname', :size => 20 %></p>
|
||
|
|
||
18 years ago
|
<p><label for="auth_source_attr_lastname"><%=l(:field_lastname)%></label>
|
||
19 years ago
|
<%= text_field 'auth_source', 'attr_lastname', :size => 20 %></p>
|
||
|
|
||
18 years ago
|
<p><label for="auth_source_attr_mail"><%=l(:field_mail)%></label>
|
||
19 years ago
|
<%= text_field 'auth_source', 'attr_mail', :size => 20 %></p>
|
||
|
</fieldset>
|
||
18 years ago
|
<!--[eoform:auth_source]-->
|
||
|
|