website/templates/account/accountPage.html.ep

27 lines
663 B
Plaintext

% title 'UNIX.dog Account Management';
% layout 'default';
<h1>Account</h1>
<% if (my $err = stash 'err') { %>
<p class="error">
<%= $err %>
</p>
<% } %>
<p>
Here you can change your password or SSH keys
used to log into the server. Please note that
SSH keys must be stored in LDAP, and the
.authorized_keys file does not work.
</p>
<p>
You can also use LDAP tools to connect to
ldap.unix.dog and manage your account information
that way.
</p>
%= form_for account => begin
<p>
%= label_for username => 'Enter your username to get started:'
%= text_field 'username', id => 'username'
</p>
%= submit_button
% end