We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Instead of two separate forms you could have one form with many submit buttons:
<%= form_tag "#" do %> <input type="hidden" name="client_id" value="<%= @params["client_id"] %>" /> <input type="hidden" name="redirect_uri" value="<%= @params["redirect_uri"] %>" /> <input type="hidden" name="state" value="<%= @params["state"] %>" /> <input type="hidden" name="response_type" value="<%= @params["response_type"] %>" /> <input type="hidden" name="scope" value="<%= @params["scope"] %>" /> <%= submit "Authorize", formaction: Routes.oauth_authorization_path(@conn, :create) %> <%= submit "Deny", name: "_method", value: "delete", formaction: Routes.oauth_authorization_path(@conn, :delete) %> <% end %>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Instead of two separate forms you could have one form with many submit buttons:
The text was updated successfully, but these errors were encountered: