PHP Classes

File: web/SSO/modules/oauth/templates/consent.php

Recommend this page to a friend!
  Classes of william amed   Raptor 2   web/SSO/modules/oauth/templates/consent.php   Download  
File: web/SSO/modules/oauth/templates/consent.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Raptor 2
Framework that takes routes from annotations
Author: By
Last change:
Date: 8 years ago
Size: 560 bytes
 

Contents

Class file image Download
<?php

$this
->data['header'] = 'OAuth Authorization';
$this->includeAtTemplateBase('includes/header.php');

?>

    <p style="margin-top: 2em">
       Do you agree to let the application at <b><?php echo htmlspecialchars($this->data['consumer']['name'])?></b> use Foodle on your behalf?
    </p>
    <p>
      <a href="<?php echo htmlspecialchars($this->data['urlAgree']); ?>">Yes I agree</a> |
      <a href="javascript:alert('Please close this browser.');">No, cancel the request.</a>
    </p>


<?php
$this
->includeAtTemplateBase('includes/footer.php');
?>