Your preferences

<%= link_to "Edit preferences »", { :controller => 'preferences', :action => 'edit'}, :class => 'edit_link' %>

Your token

Token (for feeds and API use):
<%= current_user.token %>
<%= button_to "Generate a new token", refresh_token_user_path(current_user), :confirm => "Are you sure? Generating a new token will replace the existing one and break any external usages of this token." %>

Your authentication

<% if Tracks::Config.auth_schemes.length > 1 %>

Your authentication type is <%= current_user.auth_type %>.

<%= link_to "Change your authentication type »", change_auth_type_user_path(current_user), :class => 'edit_link' %>
<% end %> <% if current_user.auth_type == 'database' %>
<%= link_to 'Change your password »', change_password_user_path(current_user) %>
<% end %> <% if current_user.auth_type == 'open_id' %>

Your Open ID URL is <%= current_user.open_id_url %>.

<%= link_to 'Change Your Identity URL »', change_auth_type_user_path(current_user) %>

<% end %>