parent
2f84a8d746
commit
91daf54d7c
@ -1,2 +1,4 @@ |
||||
.guest-container{ width:35%; margin: 2em auto 0 auto; } |
||||
#oauth-request button{ float: right; } |
||||
#oauth-request a.button{ float: right; } |
||||
#oauth-request ul li{ list-style: disc; } |
||||
#oauth-request ul { margin-left: 2em; margin-top: 1em; } |
||||
|
@ -0,0 +1,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> |
Loading…
Reference in new issue