X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/b8f6dbd403507edd14f04f3151c285e232607360..19c26e70a357f4e191c8d7bb8c2cc57575792cc0:/app/views/oauth/authorize.html.erb diff --git a/app/views/oauth/authorize.html.erb b/app/views/oauth/authorize.html.erb index 987997de2..d53181c17 100644 --- a/app/views/oauth/authorize.html.erb +++ b/app/views/oauth/authorize.html.erb @@ -1,14 +1,19 @@ -
Would you like to authorize <%= link_to @token.client_application.name,@token.client_application.url %> (<%= link_to @token.client_application.url,@token.client_application.url %>) to access your account?
-<% form_tag authorize_url do %> +<% content_for :heading do %> +<%= raw t(".request_access", :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 -%> -- <%= check_box_tag 'authorize' %> authorize access -
-- <%= submit_tag %> -
-<% end %> \ No newline at end of file + <%= hidden_field_tag "oauth_callback", params[:oauth_callback] %> + <%- end -%> +<%= t '.allow_to' %>
+<%= submit_tag t(".grant_access") %>
+<% end %>