Skip to content
Snippets Groups Projects
Commit 6d71b372 authored by Tim van Dijen's avatar Tim van Dijen
Browse files

Remove orphaned templates

parent 04f475c6
No related branches found
No related tags found
No related merge requests found
<?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');
<?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');
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment