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

13 lines
325 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 => 1, max => max_rpp, maxlength => 4, size => 4 %>
%= submit_button "Update"
% end
<p/>
%= flash('confirmation')