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.
56 lines
1.6 KiB
56 lines
1.6 KiB
% layout 'default'; |
|
% title l('User profile'); |
|
<h2><%= l('User profile') %></h2> |
|
% my $data = (stash 'user_data') || {}; |
|
% my @attrs = (method => 'POST', enctype => 'multipart/form-data'); |
|
%= form_for "/user/update" => (@attrs) => begin |
|
<table> |
|
<tr> |
|
<td><%= l('Login') %></td> |
|
<td><%= session('useruid') %></td> |
|
</tr> |
|
% param displayname => $data->{displayName}; |
|
<tr> |
|
<td><%= l('Display name') %></td> |
|
<td><%= text_field 'displayname', placeholder => l('John Doe') %></td> |
|
</tr> |
|
% param mail => $data->{mail}; |
|
<tr> |
|
<td><%= l('Email') %></td> |
|
<td><%= text_field 'mail', type => 'email', placeholder => 'petrov@example.com' %></td> |
|
</tr> |
|
% param o => $data->{o}; |
|
<tr> |
|
<td><%= l('Organization') %></td> |
|
<td><%= text_field 'o', placeholder => l('JSC Vector') %></td> |
|
</tr> |
|
% param mobile => $data->{mobile}; |
|
<tr> |
|
<td><%= l('Cell phone') %></td> |
|
<td><%= text_field 'mobile', placeholder => '+79081235689' %></td> |
|
</tr> |
|
<tr> |
|
<td><%= l('Avatar') %></td> |
|
<td><%= file_field 'photo' %></td> |
|
</tr> |
|
% if (config->{user}->{allow_chpass}) { |
|
<tr> |
|
<td><%= l('New password') %></td> |
|
<td><%= password_field 'newpass', placeholder => '******' %></td> |
|
</tr> |
|
% } |
|
<tr><td colspan='2'><hr/></td></tr> |
|
<tr> |
|
<td><%= l('Current password') %></td> |
|
<td><%= password_field 'password', required => 1, placeholder => '******' %></td> |
|
</tr> |
|
<tr><td colspan='2'><hr/></td></tr> |
|
<tr> |
|
<td colspan='2'><%= submit_button l('Update') %></td> |
|
</tr> |
|
</table> |
|
% end |
|
% my $result = (flash 'result') || ''; |
|
% if ($result) { |
|
%= tag 'p' => $result; |
|
% }
|
|
|