summaryrefslogtreecommitdiffstats
path: root/redmine/app/views/my/account.rhtml
blob: 3a2c5f3ad45d67b2d6c73c6444e838f61b782664 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<h2><%=l(:label_my_account)%></h2>

<p><%=l(:field_login)%>: <strong><%= @user.login %></strong><br />
<%=l(:field_created_on)%>: <%= format_time(@user.created_on) %>,
<%=l(:field_updated_on)%>: <%= format_time(@user.updated_on) %></p>

<%= error_messages_for 'user' %>

  <div class="box">
  <h3><%=l(:label_information_plural)%></h3>

  <%= start_form_tag({:action => 'account'}, :class => "tabular") %>

  <!--[form:user]-->
  <p><label for="user_firstname"><%=l(:field_firstname)%> <span class="required">*</span></label>
  <%= text_field 'user', 'firstname'  %></p>

  <p><label for="user_lastname"><%=l(:field_lastname)%> <span class="required">*</span></label>
  <%= text_field 'user', 'lastname'  %></p>

  <p><label for="user_mail"><%=l(:field_mail)%> <span class="required">*</span></label>
  <%= text_field 'user', 'mail', :size => 40 %></p>
  
  <p><label for="user_language"><%=l(:field_language)%></label>
  <%= select("user", "language", lang_options_for_select) %></p>
  <!--[eoform:user]-->

  <p><label for="user_mail_notification"><%=l(:field_mail_notification)%></label>
  <%= check_box 'user', 'mail_notification' %></p>

  <center><%= submit_tag l(:button_save) %></center>
  <%= end_form_tag %>
  </div>


<% unless @user.auth_source_id %>
  <div class="box">
  <h3><%=l(:field_password)%></h3>

  <%= start_form_tag({:action => 'change_password'}, :class => "tabular") %>

  <p><label for="password"><%=l(:field_password)%> <span class="required">*</span></label>
  <%= password_field_tag 'password', nil, :size => 25 %></p>

  <p><label for="new_password"><%=l(:field_new_password)%> <span class="required">*</span></label>
  <%= password_field_tag 'new_password', nil, :size => 25 %></p>

  <p><label for="new_password_confirmation"><%=l(:field_password_confirmation)%> <span class="required">*</span></label>
  <%= password_field_tag 'new_password_confirmation', nil, :size => 25 %></p>

  <center><%= submit_tag l(:button_save) %></center>
  <%= end_form_tag %>
  </div>
<% end %>