From 9e75b8472ff066ba98d5f2af07fa12f7c11df55f Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Fri, 4 Sep 2020 00:29:14 +0100 Subject: [PATCH] Convert oauth authorization form to use bootstrap --- app/views/oauth/authorize.html.erb | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/app/views/oauth/authorize.html.erb b/app/views/oauth/authorize.html.erb index 5fd3c2fee..8576ea3ab 100644 --- a/app/views/oauth/authorize.html.erb +++ b/app/views/oauth/authorize.html.erb @@ -4,16 +4,15 @@

<%= 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 ".allow_to" %>

- -

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

+<%= bootstrap_form_tag do |f| %> + <%= f.hidden_field :oauth_token, :value => @token.token %> + <% if params[:oauth_callback] -%> + <%= f.hidden_field :oauth_callback, :value => params[:oauth_callback] %> + <% end -%> + <%= f.form_group :permissions, :label => { :text => t(".allow_to") } do %> + <% @token.client_application.permissions.each do |perm| -%> + <%= f.check_box perm, :value => "yes", :checked => @token.read_attribute(perm), :label => t(".#{perm}") %> + <% end -%> + <% end -%> + <%= f.primary t(".grant_access") %> <% end %> -- 2.43.2