Skip to content
Snippets Groups Projects
Commit 861394c8 authored by Tom Needham's avatar Tom Needham
Browse files

Merge pull request #8061 from owncloud/remove-uneeded-file

Remove uneeded file
parents 797bb7b9 ce1b3829
Branches
No related tags found
No related merge requests found
h2 {
font-size:32px;
font-weight:700;
margin-bottom:16px;
white-space:nowrap;
}
ul.scopes {
list-style:disc;
}
ul.scopes li {
white-space:nowrap;
}
h2 img {
width:50%;
}
#oauth {
width:320px;
margin:64px auto 32px;
}
#allow-auth {
background-color:#5c3;
box-shadow:0 1px 1px #fff, 0 1px 1px #5f3 inset;
color:#fff;
text-shadow:#5e3 0 1px 0;
}
#deny-auth {
background:none;
border:0;
box-shadow:0 0 0 #fff, 0 0 0 #fff inset;
font-size:19px;
margin:11px;
padding:0;
}
.guest-container{ width:35%; margin: 2em auto 0 auto; }
#oauth-request a.button{ float: right; }
#oauth-request ul li{ list-style: disc; }
#oauth-request ul { margin-left: 2em; margin-top: 1em; }
<?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 print_unescaped(OC_Util::sanitizeHTML($_['consumer']['name']).'</strong> '.OC_Util::sanitizeHTML($_['message'])); ?></p>
<ul>
<?php
// Foreach requested scope
foreach($_['requiredapps'] as $requiredapp){
print_unescaped('<li>'.OC_Util::sanitizeHTML($requiredapp).'</li>');
}
?>
</ul>
<a href="<?php print_unescaped(OC::$WEBROOT); ?>" id="back-home" class="button">Back to ownCloud</a>
</div>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment