]> git.openstreetmap.org Git - rails.git/blob - app/views/accounts/edit.html.erb
e31c5e90d2a7508e770a0870bde1a92e82712f5c
[rails.git] / app / views / accounts / edit.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 <% end %>
8
9 <%= render :partial => "settings_menu" %>
10
11 <%= bootstrap_form_for current_user, :url => { :action => :update }, :html => { :multipart => true, :id => "accountForm", :autocomplete => :off } do |f| %>
12
13   <%= f.text_field :display_name %>
14   <%= f.email_field :email, :disabled => true, :label => t(".current email address") %>
15   <%= f.email_field :new_email, :autocomplete => "email" %>
16   <%= f.password_field :pass_crypt, :value => "", :autocomplete => "new-password" %>
17   <%= f.password_field :pass_crypt_confirmation, :value => "", :autocomplete => "new-password" %>
18
19   <fieldset class="mb-3">
20     <label for="user_auth_provider" class="form-label"><%= t(".external auth") %></label>
21     <div class="row">
22       <%= f.select :auth_provider,
23                    Auth.providers.map { |provider| [I18n.t("auth.providers.#{provider}"), provider] },
24                    :include_blank => t("auth.providers.none"),
25                    :hide_label => true,
26                    :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-body-secondary">(<a href="<%= t ".openid.link" %>" target="_new"><%= t ".openid.link text" %></a>)</small>
30   </fieldset>
31
32   <div class="mb-3">
33     <label class="form-label"><%= t ".public editing.heading" %></label>
34     <span class="form-text text-body-secondary">
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="mb-3">
46     <label class="form-label"><%= t ".contributor terms.heading" %></label>
47     <span class="form-text text-body-secondary">
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   <div class="row justify-content-between g-1">
62     <div class="col-auto">
63       <%= f.primary t(".save changes button") %>
64     </div>
65     <div class="col-auto">
66       <%= link_to t(".delete_account"), account_deletion_path, :class => "btn btn-outline-danger" %>
67     </div>
68   </div>
69 <% end %>
70
71 <% unless current_user.data_public? %>
72   <%= render :partial => "go_public" %>
73 <% end %>