To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / app / views / settings / _authentication.rhtml @ 441:cbce1fd3b1b7

History | View | Annotate | Download (1.15 KB)

1
<% form_tag({:action => 'edit', :tab => 'authentication'}) do %>
2

    
3
<div class="box tabular settings">
4
<p><%= setting_check_box :login_required %></p>
5

    
6
<p><%= setting_select :autologin, [[l(:label_disabled), 0]] + [1, 7, 30, 365].collect{|days| [l('datetime.distance_in_words.x_days', :count => days), days.to_s]} %></p>
7

    
8
<p><%= setting_select :self_registration, [[l(:label_disabled), "0"],
9
                                                                                     [l(:label_registration_activation_by_email), "1"],
10
                                                                                     [l(:label_registration_manual_activation), "2"],
11
                                                                                     [l(:label_registration_automatic_activation), "3"]] %></p>
12

    
13
<p><%= setting_text_field :password_min_length, :size => 6 %></p>
14

    
15
<p><%= setting_check_box :lost_password, :label => :label_password_lost %></p>
16

    
17
<p><%= setting_check_box :openid, :disabled => !Object.const_defined?(:OpenID) %></p>
18

    
19
<p><%= setting_check_box :rest_api_enabled %></p>
20
</div>
21

    
22
<div style="float:right;">
23
    <%= link_to l(:label_ldap_authentication), {:controller => 'ldap_auth_sources', :action => 'index'}, :class => 'icon icon-server-authentication' %>
24
</div>
25

    
26
<%= submit_tag l(:button_save) %>
27
<% end %>