Mercurial > hg > soundsoftware-site
comparison app/views/settings/.svn/text-base/_authentication.rhtml.svn-base @ 0:513646585e45
* Import Redmine trunk SVN rev 3859
author | Chris Cannam |
---|---|
date | Fri, 23 Jul 2010 15:52:44 +0100 |
parents | |
children | 94944d00e43c |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:513646585e45 |
---|---|
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, [1, 7, 30, 365].collect{|days| [l('datetime.distance_in_words.x_days', :count => days), days.to_s]}, :blank => :label_disabled %></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 %> |