move code up one directory
[atutor.git] / themes / default / social / oauth / authorize.tmpl.php
1 <div>
2 <h1>Grant access to your private information?</h1>
3
4 <form class="input-form" action="approve_authorization.php" method="post">
5         <div class="row">
6                 An application is requesting access to your information. You should
7                 only approve this request if you trust the application.
8         </div>
9         <input type="hidden" name="oauth_token" value="<?php echo htmlspecialchars($this->token); ?>" /> 
10         <input type="hidden" name="oauth_callback" value="<?php echo htmlspecialchars($this->callback); ?>" />
11         <input class="button" type="submit" value="Approve" />
12         <input class="button" type="button" value="Decline" onclick="location.href='/'" />
13 </form>
14 <div style="clear: both"></div>
15 </div>