summaryrefslogtreecommitdiffstats
path: root/modules/oauth/templates/authorized.php
blob: 7ce806d56637d23b0944f571af24ba20e51815de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?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');