-<h2><%= t 'user.account.my settings' %></h2>
+<% content_for :heading do %>
+ <h2><%= t 'user.account.my settings' %></h2>
+ <ul class='secondary-actions clearfix'>
+ <li><%= link_to t('user.account.return to profile'), :controller => 'user', :action => 'view', :display_name => @user.display_name %></li>
+ <li><%= link_to t('user.view.oauth settings'), :controller => 'oauth_clients', :action => 'index' %></li>
+ </ul>
+<% end %>
+
<%= error_messages_for 'user' %>
-<% form_for :user, :html => { :multipart => true } do |f| %>
-<table id="accountForm">
- <tr>
- <td class="fieldName"><%= t 'user.new.display name' %></td>
- <td><%= f.text_field :display_name %></td>
- </tr>
+<%= form_for :user, :html => { :multipart => true, :id => 'accountForm',:class => 'standard-form' } do |f| %>
+ <fieldset>
+ <div class="form-row">
+ <label class="standard-label"><%= t 'user.new.display name' %></label>
+ <%= f.text_field :display_name %>
+ </div>
+ </fieldset>
- <tr>
- <td class="fieldName" style="padding-bottom:0px;"><%= t 'user.account.current email address' %></td>
- <td style="padding-bottom:0px;"><%= @user.email %> <span class="minorNote"><%= t 'user.account.email never displayed publicly' %></span></td>
- </tr>
+ <fieldset>
+ <div class="form-row">
+ <label class="standard-label"><%= t 'user.account.current email address' %></label>
+ <input type="email" disabled value="<%= @user.email %>" />
+ <span class="form-help deemphasize"><%= t 'user.account.email never displayed publicly' %></span>
+ </div>
- <tr>
- <td class="fieldName"><%= t 'user.account.new email address' %></td>
- <td><%= f.text_field :new_email, {:size => 50, :maxlength => 255} %> <span class="minorNote"><%= t 'user.account.email never displayed publicly' %></span></td>
- </tr>
+ <div class="form-row">
+ <label class="standard-label"><%= t 'user.account.new email address' %></label>
+ <%= f.email_field :new_email %>
+ <span class="form-help deemphasize"><%= t 'user.account.email never displayed publicly' %></span>
+ </div>
+ </fieldset>
- <tr>
- <td class="fieldName" style="padding-bottom:0px;"><%= t 'user.new.password' %></td>
- <td style="padding-bottom:0px;"><%= f.password_field :pass_crypt, {:value => '', :size => 30, :maxlength => 255, :autocomplete => :off} %></td>
- </tr>
+ <fieldset>
+ <div class="form-row">
+ <label class="standard-label"><%= t 'user.new.password' %></label>
+ <%= f.password_field :pass_crypt, {:value => '', :autocomplete => :off} %>
+ </div>
- <tr>
- <td class="fieldName"><%= t 'user.new.confirm password' %></td>
- <td><%= f.password_field :pass_crypt_confirmation, {:value => '', :size => 30, :maxlength => 255, :autocomplete => :off} %></td>
- </tr>
+ <div class="form-row">
+ <label class="standard-label"><%= t 'user.new.confirm password' %></label>
+ <%= f.password_field :pass_crypt_confirmation, {:value => '', :autocomplete => :off} %>
+ </div>
+ </fieldset>
- <tr>
- <td class="fieldName" valign="top"><%= t 'user.account.public editing.heading' %></td>
- <td>
- <% if @user.data_public? %>
- <%= t 'user.account.public editing.enabled' %> <span class="minorNote">(<a href="<%= t 'user.account.public editing.enabled link' %>" target="_new"><%= t 'user.account.public editing.enabled link text' %></a>)</span>
- <% else %>
- <%= t 'user.account.public editing.disabled' %> <span class="minorNote">(<a href="#public"><%= t 'user.account.public editing.disabled link text' %></a>)</span>
- <% end %>
- </td>
- </tr>
+ <fieldset>
+ <div class="form-row">
+ <label class="standard-label"><%= t 'user.account.openid.openid' %></label>
+ <%= f.url_field :openid_url, {:id => "openid_url", :class => "openid_url"} %>
+ <span class="form-help deemphasize">(<a href="<%= t 'user.account.openid.link' %>" target="_new"><%= t 'user.account.openid.link text' %></a>)</span>
+ </diV>
+ </fieldset>
- <tr>
- <td class="fieldName" valign="top"><%= t 'user.account.contributor terms.heading' %></td>
- <td>
- <% if @user.terms_agreed? %>
- <%= t 'user.account.contributor terms.agreed' %>
- <span class="minorNote">(<a href="<%= t 'user.account.contributor terms.link' %>" target="_new"><%= t 'user.account.contributor terms.link text' %></a>)</span>
- <br />
- <% if @user.consider_pd? %>
- <%= t 'user.account.contributor terms.agreed_with_pd' %>
+ <fieldset class="form-divider">
+ <div class="form-row">
+ <label class="standard-label"><%= t 'user.account.public editing.heading' %></label>
+ <span class="form-help deemphasize">
+ <% if @user.data_public? %>
+ <%= t 'user.account.public editing.enabled' %>
+ (<a href="<%= t 'user.account.public editing.enabled link' %>" target="_new"><%= t 'user.account.public editing.enabled link text' %></a>)
+ <% else %>
+ <%= t 'user.account.public editing.disabled' %>
+ (<a href="#public"><%= t 'user.account.public editing.disabled link text' %></a>)
<% end %>
- <% else %>
- <%= t 'user.account.contributor terms.not yet agreed' %> <br />
+ </span>
+ </div>
- <%= link_to t('user.account.contributor terms.review link text'), :controller => 'user', :action => 'terms' %>
- <% end %>
- </td>
- </tr>
+ <div class="form-row">
+ <label class="standard-label"><%= t 'user.account.contributor terms.heading' %></label>
+ <span class="form-help deemphasize">
+ <% if @user.terms_agreed? %>
+ <%= t 'user.account.contributor terms.agreed' %>
+ (<a href="<%= t 'user.account.contributor terms.link' %>" target="_new"><%= t 'user.account.contributor terms.link text' %></a>)
+ <% if @user.consider_pd? %>
+ <%= t 'user.account.contributor terms.agreed_with_pd' %>
+ <% end %>
+ <% else %>
+ <%= t 'user.account.contributor terms.not yet agreed' %>
+ <%= link_to t('user.account.contributor terms.review link text'), :controller => 'user', :action => 'terms' %>
+ <% end %>
+ </span>
+ </div>
+ <div class="form-row">
+ <label class="standard-label"><%= t 'user.account.preferred editor' %></label>
+ <%= f.select :preferred_editor, [[t("editor.default", :name => t("editor.#{DEFAULT_EDITOR}.name")), 'default']] + Editors::ALL_EDITORS.collect { |e| [t("editor.#{e}.description"), e] } %>
+ </div>
+ </fieldset>
- <tr>
- <td class="fieldName" valign="top"><%= t 'user.account.profile description' %></td>
- <td><%= f.text_area :description, :rows => '5', :cols => '60' %></td>
- </tr>
+ <fieldset class="form-divider">
+ <div class='form-row'>
+ <label class="standard-label"><%= t 'user.account.profile description' %></label>
+ <%= richtext_area :user, :description %>
+ </div>
- <tr>
- <td class="fieldName" valign="top"><%= t 'user.account.preferred languages' %></td>
- <td><%= f.text_field :languages %></td>
- </tr>
+ <div class="form-row">
+ <label class="standard-label"><%= t 'user.account.preferred languages' %></label>
+ <%= f.text_field :languages %>
+ </div>
- <tr>
- <td class="fieldName" valign="top"><%= t 'user.account.preferred editor' %></td>
- <td><%= f.select :preferred_editor, [[t("editor.default", :name => t("editor.#{DEFAULT_EDITOR}.name")), 'default']] + Editors::ALL_EDITORS.collect { |e| [t("editor.#{e}.description"), e] } %></td>
- </tr>
+ <div class='form-row accountImage'>
+ <label class="standard-label"><%= t 'user.account.image' %></label>
+ <%= user_image @user %>
+ <ul class='form-list accountImage-options'>
+ <% if @user.image.file? %>
+ <li>
+ <%= radio_button_tag "image_action", "keep", !@user.image_use_gravatar %>
+ <label class='standard-label' for='image_action_keep'><%= t 'user.account.keep image' %></label>
+ </li>
+ <% end %>
+ <% if @user.image.file? || @user.image_use_gravatar? %>
+ <li>
+ <%= radio_button_tag "image_action", "delete" %>
+ <label class='standard-label' for='image_action_delete'><%= t 'user.account.delete image' %></label>
+ </li>
+ <% end %>
+ <% if @user.image.file? %>
+ <li>
+ <%= radio_button_tag "image_action", "new" %>
+ <label class='standard-label' for='image_action_new'>
+ <%= t 'user.account.replace image' %>
+ <span class="form-help deemphasize"><%= t 'user.account.image size hint' %></span>
+ </label>
+ <%= f.file_field :image, :onchange => "$('#image_action_new').prop('checked', true)" %>
+ </li>
+ <% else %>
+ <li>
+ <%= radio_button_tag "image_action", "new" %>
+ <label class='standard-label' for='image_action_new'>
+ <%= t 'user.account.new image' %>
+ <span class="form-help deemphasize"><%= t 'user.account.image size hint' %></span>
+ </label>
+ <%= f.file_field :image, :onchange => "$('#image_action_new').prop('checked', true)" %>
+ </li>
+ <% end %>
+ <li>
+ <%= radio_button_tag "image_action", "gravatar", @user.image_use_gravatar %>
+ <label class='standard-label' for='image_action_gravatar'>
+ <%= t 'user.account.gravatar.gravatar' %>
+ <span class='form-help deemphasize'> (<a href="<%= t 'user.account.gravatar.link' %>" target="_new"><%= t 'user.account.gravatar.link text' %></a>)</span>
+ </label>
+ </li>
+ </ul>
+ </div>
+ </fieldset>
- <tr>
- <td class="fieldName" valign="top">
- <%= t 'user.account.image' %>
- </td>
- <td valign="top">
- <% if @user.image.nil? %>
- <%= hidden_field_tag "image_action", "new" %>
- <%= t 'user.account.new image' %><br /><%= file_column_field "user", "image" %><br /><span class="minorNote"><%= t 'user.account.image size hint' %></span>
- <% else %>
- <table id="accountImage">
- <tr>
- <td rowspan="3" valign="top"><%= image_tag url_for_file_column(@user, "image"), :class => "user_image" %></td>
- <td><%= radio_button_tag "image_action", "keep", true %></td>
- <td><%= t 'user.account.keep image' %></td>
- </tr>
- <tr>
- <td><%= radio_button_tag "image_action", "delete" %></td>
- <td><%= t 'user.account.delete image' %></td>
- </tr>
- <tr>
- <td><%= radio_button_tag "image_action", "new" %></td>
- <td><%= t 'user.account.replace image' %><br /><%= file_column_field "user", "image", :onchange => "$('image_action_new').checked = true" %><br /><span class="minorNote"><%= t 'user.account.image size hint' %></span></td>
- </tr>
- </table>
- <% end %>
- </td>
- </tr>
+ <fieldset class="form-divider">
+ <div class='form-row location clearfix'>
+ <label class="standard-label"><%= t 'user.account.home location' %></label>
+ <div id="homerow" <% unless @user.home_lat and @user.home_lon %>class="nohome"<%end%> >
+ <p class="message form-help deemphasize"><%= t 'user.account.no home location' %></p>
+ <div class='form-column'>
+ <label class="standard-label secondary"><%= t 'user.account.latitude' %></label>
+ <%= f.text_field :home_lat, :id => "home_lat" %>
+ </div>
+ <div class='form-column'>
+ <label class="standard-label secondary"><%= t 'user.account.longitude' %></label>
+ <%= f.text_field :home_lon, :id => "home_lon" %>
+ </div>
+ </div>
+ </div>
- <tr id="homerow" <% unless @user.home_lat and @user.home_lon %> class="nohome" <%end%> >
- <td class="fieldName"><%= t 'user.account.home location' %></td>
- <td><em class="message"><%= t 'user.account.no home location' %></em><span class="location"><%= t 'user.account.latitude' %> <%= f.text_field :home_lat, :size => 20, :id => "home_lat" %> <%= t 'user.account.longitude' %><%= f.text_field :home_lon, :size => 20, :id => "home_lon" %></span></td>
- </tr>
+ <div class="form-row">
+ <input type="checkbox" name="updatehome" value="1" <% unless @user.home_lat and @user.home_lon %> checked="checked" <% end %> id="updatehome" />
+ <label class="standard-label" for="updatehome"><%= t 'user.account.update home location on click' %></label>
+ </div>
+ <% content_for :head do %>
+ <%= javascript_include_tag "user" %>
+ <% end %>
+ <%= content_tag "div", "", :id => "map", :class => "content_map settings_map set_location" %>
+ </fieldset>
- <tr>
- <td></td>
- <td>
- <p><%= t 'user.account.update home location on click' %> <input type="checkbox" value="1" <% unless @user.home_lat and @user.home_lon %> checked="checked" <% end %> id="updatehome" /> </p>
- <div id="map" class="user_map" style="border:1px solid black; position:relative; width:500px; height:400px;"></div>
- </td>
- </tr>
-
- <tr>
- <td></td>
- <td align=right><br/><%= submit_tag t('user.account.save changes button') %></td>
- </tr>
-</table>
+ <%= submit_tag t('user.account.save changes button') %>
<% end %>
-<%= render :partial => 'map', :locals => { :setting_location => true, :show_other_users => false } %>
-
<% unless @user.data_public? %>
<a name="public"></a>
<h2><%= t 'user.account.public editing note.heading' %></h2>
-<%= t 'user.account.public editing note.text' %>
+<%= raw t 'user.account.public editing note.text' %>
<%= button_to t('user.account.make edits public button'), :action => :go_public %>
<% end %>
-<br/>
-<br/>
-<%= link_to t('user.account.return to profile'), :controller => 'user', :action => @user.display_name %>
-<br/>
-<br/>