1 <% content_for :head do %>
2 <%= javascript_include_tag "user" %>
5 <% content_for :heading do %>
6 <h1><%= t ".my settings" %></h1>
7 <ul class='secondary-actions clearfix'>
8 <li><%= link_to t(".return to profile"), user_path(current_user) %></li>
9 <li><%= link_to t(".oauth1 settings"), oauth_clients_path %></li>
10 <li><%= link_to t(".oauth2 applications"), oauth_applications_path %></li>
11 <li><%= link_to t(".oauth2 authorizations"), oauth_authorized_applications_path %></li>
15 <%= bootstrap_form_for current_user, :url => { :action => :account }, :method => :post, :html => { :multipart => true, :id => "accountForm", :autocomplete => :off } do |f| %>
17 <%= f.text_field :display_name %>
18 <%= f.email_field :email, :disabled => true, :label => t(".current email address") %>
19 <%= f.email_field :new_email, :autocomplete => "email" %>
20 <%= f.password_field :pass_crypt, :value => "", :autocomplete => "new-password" %>
21 <%= f.password_field :pass_crypt_confirmation, :value => "", :autocomplete => "new-password" %>
23 <fieldset class="form-group">
24 <label for="user_auth_provider"><%= t(".external auth") %></label>
25 <div class="form-row">
26 <%= f.select(:auth_provider, Auth.providers, :hide_label => true, :wrapper => { :class => "col-auto mb-0" }) %>
27 <%= f.text_field(:auth_uid, :hide_label => true, :wrapper => { :class => "col mb-0" }) %>
29 <small class="form-text text-muted">(<a href="<%= t ".openid.link" %>" target="_new"><%= t ".openid.link text" %></a>)</small>
32 <div class="form-group">
33 <label><%= t ".public editing.heading" %></label>
34 <span class="form-text text-muted">
35 <% if current_user.data_public? %>
36 <%= t ".public editing.enabled" %>
37 (<a href="<%= t ".public editing.enabled link" %>" target="_new"><%= t ".public editing.enabled link text" %></a>)
39 <%= t ".public editing.disabled" %>
40 (<a href="#public"><%= t ".public editing.disabled link text" %></a>)
45 <div class="form-group">
46 <label><%= t ".contributor terms.heading" %></label>
47 <span class="form-text text-muted">
48 <% if current_user.terms_agreed? %>
49 <%= t ".contributor terms.agreed" %>
50 (<a href="<%= t ".contributor terms.link" %>" target="_new"><%= t ".contributor terms.link text" %></a>)
51 <% if current_user.consider_pd? %>
52 <%= t ".contributor terms.agreed_with_pd" %>
55 <%= t ".contributor terms.not yet agreed" %>
56 <%= link_to t(".contributor terms.review link text"), :controller => "users", :action => "terms" %>
61 <%= f.richtext_field :description, :cols => 80, :rows => 20 %>
63 <fieldset class="form-group">
64 <%= f.label t(".image") %>
65 <div class="form-row">
66 <div class="col-sm-2">
67 <%= user_image current_user %>
69 <div class="col-sm-10">
70 <% if current_user.avatar.attached? %>
71 <%= f.radio_button "avatar_action", "keep", :name => "avatar_action", :label => t(".keep image"), :checked => !current_user.image_use_gravatar %>
73 <% if current_user.avatar.attached? || current_user.image_use_gravatar? %>
74 <%= f.radio_button "avatar_action", "delete", :name => "avatar_action", :label => t(".delete image"), :checked => false %>
76 <% if current_user.avatar.attached? %>
77 <%= f.form_group :help => t(".image size hint"), :class => "mb-0" do %>
78 <%= f.radio_button "avatar_action", "new", :name => "avatar_action", :label => t(".replace image"), :checked => false %>
79 <%= f.file_field :avatar, :hide_label => true, :wrapper => { :class => "mb-0" } %>
82 <%= f.form_group :help => t(".image size hint"), :class => "mb-0" do %>
83 <%= f.radio_button "avatar_action", "new", :name => "avatar_action", :label => t(".new image"), :checked => false %>
84 <%= f.file_field :avatar, :hide_label => true, :wrapper => { :class => "mb-0" } %>
87 <%= f.form_group :help => link_to(t(".gravatar.what_is_gravatar"), t(".gravatar.link")) do %>
88 <%= f.radio_button "avatar_action", "gravatar", :name => "avatar_action", :label => t(".gravatar.gravatar"), :checked => current_user.image_use_gravatar %>
95 <legend><%= t ".home location" -%></legend>
96 <div id="homerow" <% unless current_user.home_lat and current_user.home_lon %> class="nohome"<% end %>>
97 <p class="message text-muted"><%= t ".no home location" %></p>
98 <div class="form-row">
99 <%= f.text_field :home_lat, :wrapper_class => "col-sm-4", :id => "home_lat" %>
100 <%= f.text_field :home_lon, :wrapper_class => "col-sm-4", :id => "home_lon" %>
103 <div class="form-check">
104 <input class="form-check-input" type="checkbox" name="updatehome" value="1" <% unless current_user.home_lat and current_user.home_lon %> checked="checked" <% end %> id="updatehome" />
105 <label class="form-check-label" for="updatehome"><%= t ".update home location on click" %></label>
107 <%= tag.div "", :id => "map", :class => "content_map set_location" %>
110 <%= f.primary t(".save changes button") %>
113 <% unless current_user.data_public? %>
114 <a name="public"></a>
115 <h2><%= t ".public editing note.heading" %></h2>
116 <%= t ".public editing note.html" %>
117 <%= button_to t(".make edits public button"), :action => :go_public %>