pgc-www/templates/auth/account.html.ep

13 lines
321 B
Plaintext

% layout 'default';
% title 'Account';
<h1><%= logname %>'s account on MyApp</h1>
%= form_for preferences => begin
%= label_for rows_per_page => 'Rows per page'
<%= number_field rows_per_page => $c->rpp,
min => 5, max => 100, maxlength => 4, size => 4 %>
%= submit_button "Update"
% end
<p/>
%= flash('confirmation')