X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/3d7eb387a7c3573f1a1d17df00adcaa1fb9b9fa5..32c3000af7c2c4016b75abf5a396262e28aabd72:/app/views/oauth/authorize.html.erb?ds=sidebyside diff --git a/app/views/oauth/authorize.html.erb b/app/views/oauth/authorize.html.erb index 31729d4f0..5fd3c2fee 100644 --- a/app/views/oauth/authorize.html.erb +++ b/app/views/oauth/authorize.html.erb @@ -1,18 +1,19 @@ <% content_for :heading do %> -
<%= raw t('oauth.oauthorize.request_access', :app_name => link_to(@token.client_application.name, @token.client_application.url), :user => link_to(@user.display_name, :controller => :user, :action => :view, :display_name => @user.display_name)) %>
+<%= t(".request_access_html", :app_name => link_to(@token.client_application.name, @token.client_application.url), :user => link_to(current_user.display_name, user_path(current_user))) %>
+ <%= form_tag authorize_url do %> <%= hidden_field_tag "oauth_token", @token.token %> <%- if params[:oauth_callback] -%> <%= hidden_field_tag "oauth_callback", params[:oauth_callback] %> <%- end -%> -<%= t 'oauth.oauthorize.allow_to' %>
-<%= t ".allow_to" %>
+<%= submit_tag %>
+<%= submit_tag t(".grant_access") %>
<% end %>