Merge pull request #4106 from solgenomics/topic/wishlist
[sgn.git] / mason / brapi / authorize.mas
blobde76be97a412592e82f10d6fa13a2dcc0e41ebf9
1 <%args>
2     $deny_url
3     $authorize_url
4     $user_name
5     $client_id
6     $database_name
7 </%args>
9 <& /page/page_title.mas, title=>"BrAPI Client Authorization" &>
11 <!-- <div class="row">
12     <div class="col-lg-12">
13         <p>To tie Field Book to your account on Breedbase, open Field Book and go to Settings -> External Data Source and scan the below QR code</p>
14     </div>
15 </div>
16 <div class="row">
17     <img class="col-md-2 col-md-offset-5" src="/user/field-book/generate">
18 </div> -->
20 <div class="row center">
21     <p>Hello <b><% $user_name %></b>!</p>
22     <p><b><% $client_id %></b> would like to access <b><% $database_name %></b> through your account. Use the buttons below to authorize or deny this request.</p><br>
23     <button class="btn btn-success" onclick="window.location.replace('<% $authorize_url %>')">Authorize Access</button>
24     <button class="btn btn-danger" onclick="window.location.replace('<% $deny_url %>')">Deny Access</button>
25 </div>