summaryrefslogtreecommitdiffstats
path: root/app/views/my/account.rhtml
blob: 8a1468cd56ec3c2bfbabce3f48c3d8c47dde736c (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
<h2><%=l(:label_my_account)%></h2>

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

<%= error_messages_for 'user' %>

<div class="box">
<h3><%=l(:label_information_plural)%></h3>
  
<% labelled_tabular_form_for :user, @user, :url => { :action => "account" } do |f| %>

<p><%= f.text_field :firstname, :required => true %></p>
<p><%= f.text_field :lastname, :required => true %></p>
<p><%= f.text_field :mail, :required => true, :size => 40 %></p>
<p><%= f.select :language, lang_options_for_select %></p>
<p><%= f.check_box :mail_notification %></p>

<% fields_for :pref, @user.pref, :builder => TabularFormBuilder, :lang => current_language do |pref_fields| %>
<p><%= pref_fields.check_box :hide_mail %></p>
<% end %>

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


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

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

  <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 %>
  </div>
<% end %>