PHP Classes

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

Recommend this page to a friend!
  Classes of william amed   Raptor 2   web/SSO/modules/oauth/templates/authorized.php   Download  
File: web/SSO/modules/oauth/templates/authorized.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: 567 bytes
 

Contents

Class file image Download
<?php

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

?>

    <p style="margin-top: 2em">
       You are now successfully authenticated, and you may click <em>Continue</em> in the application where you initiated authentication.
    </p>
<?php if (!empty($this->data['oauth_verifier'])) {?>
<p>
        When asked, the verifier code to finish the procedure, is: <b><?php echo htmlspecialchars($this->data['oauth_verifier']);?></b>.
    </p>
<?php } ?>


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