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.
47 lines
1.7 KiB
47 lines
1.7 KiB
13 years ago
|
<% disable_accessibility_css! %>
|
||
|
|
||
16 years ago
|
<h2><%=l(:label_register)%> <%=link_to l(:label_login_with_open_id_option), signin_url if Setting.openid? %></h2>
|
||
19 years ago
|
|
||
18 years ago
|
<% form_tag({:action => 'register'}, :class => "tabular") do %>
|
||
19 years ago
|
<%= error_messages_for 'user' %>
|
||
|
|
||
|
<div class="box">
|
||
|
<!--[form:user]-->
|
||
17 years ago
|
<% if @user.auth_source_id.nil? %>
|
||
18 years ago
|
<p><label for="user_login"><%=l(:field_login)%> <span class="required">*</span></label>
|
||
17 years ago
|
<%= text_field 'user', 'login', :size => 25 %></p>
|
||
18 years ago
|
|
||
13 years ago
|
<p><label for="user_password"><%=l(:field_password)%> <span class="required">*</span></label>
|
||
13 years ago
|
<%= password_field 'user', 'password', :size => 25 %><br />
|
||
14 years ago
|
<%= password_complexity_requirements %></p>
|
||
19 years ago
|
|
||
13 years ago
|
<p><label for="user_password_confirmation"><%=l(:field_password_confirmation)%> <span class="required">*</span></label>
|
||
13 years ago
|
<%= password_field 'user', 'password_confirmation', :size => 25 %></p>
|
||
17 years ago
|
<% end %>
|
||
19 years ago
|
|
||
18 years ago
|
<p><label for="user_firstname"><%=l(:field_firstname)%> <span class="required">*</span></label>
|
||
19 years ago
|
<%= text_field 'user', 'firstname' %></p>
|
||
18 years ago
|
|
||
18 years ago
|
<p><label for="user_lastname"><%=l(:field_lastname)%> <span class="required">*</span></label>
|
||
19 years ago
|
<%= text_field 'user', 'lastname' %></p>
|
||
|
|
||
18 years ago
|
<p><label for="user_mail"><%=l(:field_mail)%> <span class="required">*</span></label>
|
||
18 years ago
|
<%= text_field 'user', 'mail' %></p>
|
||
|
|
||
18 years ago
|
<p><label for="user_language"><%=l(:field_language)%></label>
|
||
18 years ago
|
<%= select("user", "language", lang_options_for_select) %></p>
|
||
|
|
||
16 years ago
|
<% if Setting.openid? %>
|
||
16 years ago
|
<p><label for="user_identity_url"><%=l(:field_identity_url)%></label>
|
||
|
<%= text_field 'user', 'identity_url' %></p>
|
||
16 years ago
|
<% end %>
|
||
16 years ago
|
|
||
16 years ago
|
<% @user.custom_field_values.select {|v| v.editable? || v.required?}.each do |value| %>
|
||
17 years ago
|
<p><%= custom_field_tag_with_label :user, value %></p>
|
||
18 years ago
|
<% end %>
|
||
19 years ago
|
<!--[eoform:user]-->
|
||
|
</div>
|
||
|
|
||
19 years ago
|
<%= submit_tag l(:button_submit) %>
|
||
18 years ago
|
<% end %>
|