]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/oauth/authorize.html.erb
Adding initial version of the OAuth token authentication method. This adds basic...
[rails.git] / app / views / oauth / authorize.html.erb
diff --git a/app/views/oauth/authorize.html.erb b/app/views/oauth/authorize.html.erb
new file mode 100644 (file)
index 0000000..987997d
--- /dev/null
@@ -0,0 +1,14 @@
+<h1>Authorize access to your account</h1>
+<p>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?</p>
+<% 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 -%>
+<p>
+       <%= check_box_tag 'authorize' %> authorize access
+</p>
+<p>
+       <%= submit_tag %>
+</p>
+<% end %>
\ No newline at end of file