X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/05e212027339733cf39aa9b7536c3f5f69ba0962..469f64384dc7d3266f40cb1a0afafd4df1abb6e8:/app/views/oauth/authorize.html.erb diff --git a/app/views/oauth/authorize.html.erb b/app/views/oauth/authorize.html.erb index 987997de2..565d13808 100644 --- a/app/views/oauth/authorize.html.erb +++ b/app/views/oauth/authorize.html.erb @@ -1,14 +1,19 @@ -

Authorize access to your account

-

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 %> +

<%= t "oauth.oauthorize.title" %>

+<% end %> + +

<%= 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)) %>

+ +<%= 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 'oauth.oauthorize.allow_to' %>

+ +

<%= submit_tag t("oauth.oauthorize.grant_access") %>

+<% end %>