aboutsummaryrefslogtreecommitdiffstats
path: root/settings/templates/oauth-required-apps.php
blob: d4fce54c59c1f96d2ee28fe2581c9b34930635a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php
/**
 * Copyright (c) 2012, Tom Needham <tom@owncloud.com>
 * This file is licensed under the Affero General Public License version 3 or later.
 * See the COPYING-README file.
 */
?>
<div id="oauth-request" class="guest-container">
	<p><strong><?php echo $_['consumer']['name'].'</strong> '.$_['message']; ?></p>
	<ul>
		<?php
		// Foreach requested scope
		foreach($_['requiredapps'] as $requiredapp){
			echo '<li>'.$requiredapp.'</li>';
		}
		?>
	</ul>
	<a href="<?php echo OC::$WEBROOT; ?>" id="back-home" class="button">Back to ownCloud</a>
</div>