]> git.openstreetmap.org Git - rails.git/blob - app/views/users/account.html.erb
Merge remote-tracking branch 'upstream/pull/3177'
[rails.git] / app / views / users / account.html.erb
1 <% content_for :head do %>
2   <%= javascript_include_tag "user" %>
3 <% end %>
4
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>
12   </ul>
13 <% end %>
14
15 <%= bootstrap_form_for current_user, :url => { :action => :account }, :method => :post, :html => { :multipart => true, :id => "accountForm", :autocomplete => :off } do |f| %>
16
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" %>
22
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" }) %>
28     </div>
29     <small class="form-text text-muted">(<a href="<%= t ".openid.link" %>" target="_new"><%= t ".openid.link text" %></a>)</small>
30   </fieldset>
31
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>)
38       <% else %>
39         <%= t ".public editing.disabled" %>
40         (<a href="#public"><%= t ".public editing.disabled link text" %></a>)
41       <% end %>
42     </span>
43   </div>
44
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" %>
53         <% end %>
54       <% else %>
55         <%= t ".contributor terms.not yet agreed" %>
56         <%= link_to t(".contributor terms.review link text"), :controller => "users", :action => "terms" %>
57       <% end %>
58     </span>
59   </div>
60
61   <%= f.select :preferred_editor, [[t("editor.default", :name => t("editor.#{Settings.default_editor}.name")), "default"]] + Editors::AVAILABLE_EDITORS.collect { |e| [t("editor.#{e}.description"), e] } %>
62   <%= f.richtext_field :description, :cols => 80, :rows => 20 %>
63   <%= f.text_field :languages %>
64
65   <fieldset class="form-group">
66     <%= f.label t(".image") %>
67     <div class="form-row">
68       <div class="col-sm-2">
69         <%= user_image current_user %>
70       </div>
71       <div class="col-sm-10">
72         <% if current_user.avatar.attached? %>
73           <%= f.radio_button "avatar_action", "keep", :name => "avatar_action", :label => t(".keep image"), :checked => !current_user.image_use_gravatar %>
74         <% end %>
75         <% if current_user.avatar.attached? || current_user.image_use_gravatar? %>
76           <%= f.radio_button "avatar_action", "delete", :name => "avatar_action", :label => t(".delete image"), :checked => false %>
77         <% end %>
78         <% if current_user.avatar.attached? %>
79           <%= f.form_group :help => t(".image size hint"), :class => "mb-0" do %>
80             <%= f.radio_button "avatar_action", "new", :name => "avatar_action", :label => t(".replace image"), :checked => false %>
81             <%= f.file_field :avatar, :hide_label => true, :wrapper => { :class => "mb-0" } %>
82           <% end %>
83         <% else %>
84           <%= f.form_group :help => t(".image size hint"), :class => "mb-0" do %>
85             <%= f.radio_button "avatar_action", "new", :name => "avatar_action", :label => t(".new image"), :checked => false %>
86             <%= f.file_field :avatar, :hide_label => true, :wrapper => { :class => "mb-0" } %>
87           <% end %>
88         <% end %>
89         <%= f.form_group :help => link_to(t(".gravatar.what_is_gravatar"), t(".gravatar.link")) do %>
90           <%= f.radio_button "avatar_action", "gravatar", :name => "avatar_action", :label => t(".gravatar.gravatar"), :checked => current_user.image_use_gravatar %>
91         <% end %>
92       </div>
93     </div>
94   </fieldset>
95
96   <fieldset>
97     <legend><%= t ".home location" -%></legend>
98     <div id="homerow" <% unless current_user.home_lat and current_user.home_lon %> class="nohome"<% end %>>
99       <p class="message text-muted"><%= t ".no home location" %></p>
100       <div class="form-row">
101         <%= f.text_field :home_lat, :wrapper_class => "col-sm-4", :id => "home_lat" %>
102         <%= f.text_field :home_lon, :wrapper_class => "col-sm-4", :id => "home_lon" %>
103       </div>
104     </div>
105     <div class="form-check">
106       <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" />
107       <label class="form-check-label" for="updatehome"><%= t ".update home location on click" %></label>
108     </div>
109     <%= tag.div "", :id => "map", :class => "content_map set_location" %>
110   </fieldset>
111
112   <%= f.primary t(".save changes button") %>
113 <% end %>
114
115 <% unless current_user.data_public? %>
116 <a name="public"></a>
117 <h2><%= t ".public editing note.heading" %></h2>
118 <%= t ".public editing note.html" %>
119   <%= button_to t(".make edits public button"), :action => :go_public %>
120 <% end %>